/* ==========================================================================
   MATKADEV PRO - LUXURY CASINO / SATTA MATKA LANDING PAGE STYLESHEET
   100% Fully Responsive for Mobile, Tablet, Laptop, and 4K Desktop
   ========================================================================== */

:root {
  --bg-primary: #08090f;
  --bg-secondary: #0f121d;
  --bg-card: rgba(18, 22, 36, 0.85);
  --bg-card-hover: rgba(26, 32, 53, 0.95);
  --bg-input: #131726;
  
  --gold-primary: #ffb703;
  --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ff9800 100%);
  --gold-text: #ffd166;
  
  --neon-green: #00f076;
  --neon-cyan: #00d2ff;
  --neon-purple: #9d4edd;
  --neon-red: #ff3366;
  
  --wa-green: #25D366;
  --wa-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(255, 183, 3, 0.35);
  --border-green: rgba(0, 240, 118, 0.3);
  
  --shadow-gold: 0 10px 30px rgba(255, 183, 3, 0.18);
  --shadow-wa: 0 10px 30px rgba(37, 211, 102, 0.35);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.6);
  
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Orbitron', monospace;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  font-size: 16px;
}

body {
  line-height: 1.6;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(255, 183, 3, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(0, 240, 118, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.03) 0%, transparent 50%);
  padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
  width: 100%;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 24px);
}

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

ul {
  list-style: none;
}

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

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

/* Typography Helpers */
.gold-text { color: var(--gold-primary); }
.text-green { color: var(--neon-green); }
.text-gold { color: var(--gold-primary); }
.text-cyan { color: var(--neon-cyan); }
.text-purple { color: var(--neon-purple); }
.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #00f076 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #161005 0%, #291b00 50%, #161005 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 8px clamp(12px, 3vw, 24px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  color: #fed7aa;
  gap: 10px;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.live-blink {
  background: #ff3366;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  animation: pulseBlink 1.5s infinite;
  white-space: nowrap;
}

@keyframes pulseBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.top-quick-wa {
  background: var(--wa-green);
  color: #000;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.top-quick-wa:hover {
  background: #fff;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-glass);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(60px, 8vw, 72px);
}

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

.logo-avatar-img {
  width: clamp(40px, 6vw, 48px);
  height: clamp(40px, 6vw, 48px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 15px rgba(255, 183, 3, 0.5), 0 4px 10px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-mono);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-title .highlight {
  color: var(--gold-primary);
}

.brand-sub {
  font-size: clamp(0.62rem, 1.5vw, 0.72rem);
  color: var(--gold-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Sanwariya Seth Ji Divine Hero Badge & Card */
.sanwariya-blessing-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, rgba(42, 29, 4, 0.9) 0%, rgba(20, 15, 35, 0.85) 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-full);
  padding: 4px 16px 4px 5px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(255, 183, 3, 0.25);
  max-width: 100%;
}

.blessing-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

.blessing-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.blessing-text .b-title {
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 900;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
}

.blessing-text .b-sub {
  font-size: clamp(0.65rem, 1.8vw, 0.75rem);
  color: #fed7aa;
}

/* Sanwariya Trust Card */
.sanwariya-divine-card {
  background: linear-gradient(135deg, rgba(35, 23, 3, 0.9) 0%, rgba(18, 22, 38, 0.95) 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 3vw, 24px);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: var(--shadow-gold);
}

@media (min-width: 640px) {
  .sanwariya-divine-card {
    flex-direction: row;
    text-align: left;
  }
}

.sanwariya-portrait-wrap {
  position: relative;
  flex-shrink: 0;
}

.sanwariya-portrait-img {
  width: clamp(100px, 15vw, 130px);
  height: clamp(100px, 15vw, 130px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 25px rgba(255, 183, 3, 0.5), 0 10px 20px rgba(0,0,0,0.6);
}

.sanwariya-halo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.35) 0%, transparent 70%);
  pointer-events: none;
  animation: haloPulse 3s infinite alternate;
}

@keyframes haloPulse {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.divine-card-info h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.divine-card-info p {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #fde68a;
  line-height: 1.5;
}

.nav-links {
  display: none;
  gap: 20px;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.call-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-primary);
}

.header-wa-btn {
  background: var(--wa-gradient);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-wa);
  transition: var(--transition);
  white-space: nowrap;
}

.header-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.hide-mobile {
  display: none;
}

@media (min-width: 576px) {
  .hide-mobile {
    display: inline;
  }
}

/* ==========================================================================
   3. MARKET LIVE TICKER BAR
   ========================================================================== */
.market-ticker-wrap {
  background: #0c0f18;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6px 12px;
  font-size: 0.8rem;
  width: 100%;
}

.ticker-label {
  background: #192033;
  color: var(--gold-primary);
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 10px;
  white-space: nowrap;
  font-size: clamp(0.68rem, 1.8vw, 0.75rem);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.ticker-items {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.ticker-items::-webkit-scrollbar {
  display: none;
}

.ticker-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.ticker-card .m-name {
  font-weight: 800;
  color: #fff;
  font-size: 0.78rem;
}

.ticker-card .m-val {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.82rem;
}

.ticker-card .m-val.gold { color: var(--gold-primary); }
.ticker-card .m-val.neon { color: var(--neon-green); }
.ticker-card .m-val.purple { color: var(--neon-purple); }
.ticker-card .m-val.cyan { color: var(--neon-cyan); }

.ticker-card .badge {
  font-size: 0.65rem;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 800;
}

.ticker-card .badge.live { background: rgba(0, 240, 118, 0.2); color: var(--neon-green); }
.ticker-card .badge.closed { background: rgba(255, 255, 255, 0.1); color: #94a3b8; }

/* ==========================================================================
   4. BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-align: center;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  min-height: 48px;
  padding: 12px 24px;
}

.btn-primary-wa {
  background: var(--wa-gradient);
  color: #fff;
  padding: 14px 26px;
  box-shadow: var(--shadow-wa);
}

.btn-primary-wa i {
  font-size: 1.4rem;
}

.btn-primary-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  padding: 14px 28px;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 183, 3, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 14px 24px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-large {
  padding: 16px 32px;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

.btn-pulse {
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-main-title {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.btn-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: clamp(35px, 6vw, 65px) 0 clamp(40px, 6vw, 60px);
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100vw);
  height: 500px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.12) 0%, rgba(37, 211, 102, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 50px);
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 100%;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(1.85rem, 5.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: clamp(0.92rem, 2.5vw, 1.05rem);
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-desc strong {
  color: #fff;
}

/* Hero Price Card Banner */
.hero-price-card {
  background: linear-gradient(135deg, rgba(30, 24, 10, 0.92) 0%, rgba(18, 22, 36, 0.96) 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: clamp(14px, 3vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-gold);
}

@media (min-width: 576px) {
  .hero-price-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.old-price {
  font-size: 0.85rem;
  color: #ef4444;
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.special-label {
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--neon-green);
  color: #000;
  padding: 2px 7px;
  border-radius: 4px;
  margin-right: 6px;
  vertical-align: middle;
}

.price-main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}

.price-main .currency {
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  font-weight: 800;
  color: var(--gold-primary);
}

.price-main .amount {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.tax-tag {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.deal-timer-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  align-self: flex-start;
}

@media (min-width: 576px) {
  .deal-timer-box {
    align-self: auto;
  }
}

.timer-title {
  font-size: 0.72rem;
  color: var(--gold-text);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.countdown-timer {
  display: flex;
  gap: 6px;
}

.t-box {
  background: #111524;
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 3px 6px;
  min-width: 40px;
  text-align: center;
}

.t-box span {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1.1;
}

.t-box small {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

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

@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.trust-pill {
  font-size: clamp(0.75rem, 2vw, 0.82rem);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   6. PHONE MOCKUP IN HERO
   ========================================================================== */
.hero-mockup-col {
  position: relative;
  width: 100%;
}

.mockup-glass-card {
  position: relative;
  background: rgba(18, 22, 38, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(12px, 3vw, 16px);
  box-shadow: var(--shadow-card);
  max-width: 400px;
  margin: 0 auto;
}

.mockup-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.76rem;
  margin-bottom: 12px;
}

.status-live-chip {
  color: var(--neon-green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tech-stack-tag {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  color: #fff;
}

.interactive-hero-phone {
  background: #000;
  border-radius: 20px;
  padding: 8px;
  border: 3px solid #23283b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.phone-app-screen {
  background: #090c14;
  border-radius: 14px;
  overflow: hidden;
}

.app-top-header {
  background: #141927;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--border-glass);
}

.app-top-header .user-info {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.add-cash-chip {
  background: var(--neon-green);
  color: #000;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 4px;
}

.mock-game-hero-banner {
  background: linear-gradient(135deg, #3d1400 0%, #170d24 100%);
  padding: 12px;
  border-bottom: 1px solid var(--border-gold);
}

.game-tag-flashing {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 3px;
}

.mock-game-hero-banner h3 {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 3px;
}

.mock-game-hero-banner p {
  font-size: 0.68rem;
  color: #fed7aa;
  margin-bottom: 7px;
}

.mock-play-btn {
  display: inline-block;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 900;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 4px;
}

.phone-market-list {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-market-item {
  background: #131726;
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-market-item.highlight-border {
  border-color: rgba(0, 240, 118, 0.4);
  background: #141c2c;
}

.p-market-left h4 {
  font-size: 0.76rem;
  font-weight: 800;
  color: #fff;
}

.p-market-left .time-txt {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.p-market-num {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.8rem;
}

.p-bid-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.p-bid-btn.active {
  background: var(--wa-green);
  color: #000;
}

.phone-bottom-nav {
  background: #0f121d;
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  border-top: 1px solid var(--border-glass);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.62rem;
  color: var(--text-dim);
  gap: 2px;
}

.nav-item.active {
  color: var(--gold-primary);
}

.floating-badge {
  position: absolute;
  background: rgba(10, 13, 22, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  z-index: 2;
  font-size: 0.78rem;
}

.floating-badge i {
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.floating-badge strong {
  display: block;
  color: #fff;
}

.floating-badge span {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.badge-top-right {
  top: -12px;
  right: -8px;
}

.badge-bottom-left {
  bottom: -12px;
  left: -8px;
  border-color: var(--wa-green);
}

.badge-bottom-left i {
  color: var(--wa-green);
}

/* ==========================================================================
   7. OFFER STRIP SECTION
   ========================================================================= */
.offer-strip-section {
  padding: 15px 0;
}

.offer-strip-box {
  background: linear-gradient(90deg, #1c1505 0%, #2f2203 50%, #151d14 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: clamp(16px, 3vw, 24px) clamp(16px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .offer-strip-box {
    flex-direction: row;
  }
}

.offer-text-block h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.offer-text-block p {
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  color: #fde68a;
}

/* ==========================================================================
   8. SECTION HEADERS & SHARED STYLES
   ========================================================================== */
.section {
  padding: clamp(45px, 6vw, 75px) 0;
}

.section-title-wrap {
  margin-bottom: clamp(28px, 4vw, 45px);
}

.sub-heading {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 6px;
}

.section-heading {
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-subtext {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   9. GAMES SHOWCASE SECTION
   ========================================================================== */
.game-filter-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
  margin-bottom: 28px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .game-filter-tabs {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.game-filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: clamp(0.8rem, 2vw, 0.88rem);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.game-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

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

.game-card-img-wrap {
  position: relative;
  height: clamp(150px, 20vw, 180px);
  overflow: hidden;
  background: #111524;
}

.game-badge-exclusive,
.game-badge-popular,
.game-badge-hot {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}

.game-badge-exclusive { background: #9d4edd; color: #fff; }
.game-badge-popular { background: var(--gold-primary); color: #000; }
.game-badge-hot { background: #ef4444; color: #fff; }

.game-image-preview {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s ease;
}

.game-card:hover .game-image-preview {
  transform: scale(1.04);
}

.mama777-bg { background: radial-gradient(circle, #381254 0%, #0d0714 100%); }
.kalyan-bg { background: radial-gradient(circle, #452a05 0%, #140d02 100%); }
.gali-bg { background: radial-gradient(circle, #053b27 0%, #03140e 100%); }
.gaziabad-bg { background: radial-gradient(circle, #0a334d 0%, #04131e 100%); }
.milan-bg { background: radial-gradient(circle, #441029 0%, #15040d 100%); }
.starline-bg { background: radial-gradient(circle, #2a114f 0%, #0b0317 100%); }

.game-graphic-overlay {
  text-align: center;
  padding: 16px;
}

.casino-icon-cluster {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--gold-primary);
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.game-logo-name {
  font-family: var(--font-mono);
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}

.game-type-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.view-mockup-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.view-mockup-btn:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.game-card-body {
  padding: clamp(14px, 3vw, 18px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.game-name {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 800;
  color: #fff;
}

.rate-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--neon-green);
  white-space: nowrap;
}

.rate-badge.gold { color: var(--gold-primary); background: rgba(255, 183, 3, 0.12); }
.rate-badge.neon { color: var(--neon-green); background: rgba(0, 240, 118, 0.12); }
.rate-badge.purple { color: var(--neon-purple); background: rgba(157, 78, 221, 0.12); }

.game-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.game-features-list {
  margin-bottom: 16px;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #cbd5e1;
}

.game-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-glass);
  gap: 8px;
}

.profit-calc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.profit-calc strong {
  color: #fff;
}

.card-wa-btn {
  background: var(--wa-green);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  white-space: nowrap;
}

.card-wa-btn:hover {
  background: #fff;
}

.games-cta-banner {
  margin-top: 30px;
  background: #111626;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: clamp(16px, 3vw, 24px);
}

.banner-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .banner-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.icon-pulse {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--wa-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}

.banner-text h3 {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 800;
  color: #fff;
}

.banner-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   10. INTERACTIVE PREVIEWS & TABS
   ========================================================================== */
.demo-section {
  background: #090c15;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.preview-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
  margin-bottom: 28px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .preview-tabs {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.preview-tabs::-webkit-scrollbar {
  display: none;
}

.p-tab-btn {
  background: #131726;
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.p-tab-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

.tab-preview-pane {
  display: none;
}

.tab-preview-pane.active {
  display: block;
}

.interactive-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 992px) {
  .interactive-preview-grid {
    grid-template-columns: 1fr 1fr 1.1fr;
  }
  .interactive-preview-grid.admin-layout {
    grid-template-columns: 1fr;
  }
}

.preview-card-mock {
  background: #101422;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.mock-device-header {
  background: #161b2e;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--border-glass);
}

.mock-device-header .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.mock-device-header .dot.red { background: #ef4444; }
.mock-device-header .dot.yellow { background: #eab308; }
.mock-device-header .dot.green { background: #22c55e; }

.device-title {
  margin-left: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.mock-screen-content {
  padding: 14px;
}

/* User Screen Mock Style */
.user-home-screen {
  background: #090c14;
}

.ui-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.ui-promo-card {
  background: linear-gradient(135deg, #2b1d03 0%, #151128 100%);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 10px;
}

.promo-badge {
  background: var(--neon-green);
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
}

.ui-promo-card h5 {
  font-size: 0.82rem;
  color: #fff;
  margin-top: 3px;
}

.ui-promo-card p {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.ui-game-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 12px;
}

.ui-gtype {
  background: #14192b;
  border-radius: 6px;
  padding: 6px 3px;
  text-align: center;
  font-size: 0.68rem;
  color: #fff;
}

.ui-gtype i {
  color: var(--gold-primary);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.ui-market-row {
  background: #131726;
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 7px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.ui-result-text {
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--gold-primary);
}

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

.ui-play-btn {
  background: var(--wa-green);
  color: #000;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 3px 7px;
  border-radius: 4px;
}

/* Bet Screen Mock */
.bet-screen {
  background: #090c14;
}

.ui-bet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.badge-rate {
  background: rgba(0, 240, 118, 0.15);
  color: var(--neon-green);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.72rem;
}

.ui-keypad-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-bottom: 12px;
}

.keypad-cell {
  background: #14192b;
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 6px 3px;
  text-align: center;
}

.keypad-cell.active {
  border-color: var(--gold-primary);
  background: rgba(255, 183, 3, 0.15);
}

.keypad-cell span {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.keypad-cell small {
  font-size: 0.62rem;
  color: var(--gold-text);
}

.ui-total-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.ui-submit-bid-btn {
  width: 100%;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 900;
  padding: 9px;
  border-radius: 6px;
  font-size: 0.85rem;
}

/* Preview Perks Column */
.preview-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-details-col h3 {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.preview-perks-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.preview-perks-list li {
  display: flex;
  gap: 12px;
}

.perk-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #161b2e;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.preview-perks-list h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.preview-perks-list p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Admin Mock Preview */
.admin-preview-full {
  background: #0c101c;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.admin-mock-dashboard {
  padding: clamp(12px, 3vw, 20px);
}

.admin-stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

@media (min-width: 576px) {
  .admin-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .admin-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.admin-stat-box {
  background: #13182a;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-stat-box .stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.admin-stat-box .stat-icon.green { background: rgba(0, 240, 118, 0.15); color: var(--neon-green); }
.admin-stat-box .stat-icon.gold { background: rgba(255, 183, 3, 0.15); color: var(--gold-primary); }
.admin-stat-box .stat-icon.cyan { background: rgba(0, 210, 255, 0.15); color: var(--neon-cyan); }
.admin-stat-box .stat-icon.purple { background: rgba(157, 78, 221, 0.15); color: var(--neon-purple); }

.admin-stat-box .s-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
}

.admin-stat-box h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.8rem;
}

.mock-table th,
.mock-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
}

.mock-table th {
  background: #151a2d;
  color: var(--text-muted);
  font-weight: 700;
}

.badge.profit {
  background: rgba(0, 240, 118, 0.15);
  color: var(--neon-green);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.badge.auto {
  background: rgba(157, 78, 221, 0.2);
  color: var(--neon-purple);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.admin-action-btn {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.admin-action-btn.green {
  background: var(--wa-green);
  color: #000;
}

/* UPI & QR Mock */
.upi-box {
  background: #111524;
  border-radius: 10px;
  padding: 16px;
}

.mock-qr {
  font-size: 5rem;
  color: #fff;
  margin: 10px 0;
}

.upi-ids {
  font-size: 0.8rem;
  color: var(--gold-text);
  font-weight: 700;
}

.auto-deposit-alert {
  background: rgba(0, 240, 118, 0.1);
  border: 1px solid var(--border-green);
  border-radius: 6px;
  padding: 8px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: #e2e8f0;
}

/* Telegram Mock */
.telegram-screen {
  background: #17212b;
  border-radius: 10px;
}

.bot-header {
  font-size: 0.82rem;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.msg-bubble {
  background: #242f3d;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.8rem;
  color: #e2e8f0;
  line-height: 1.5;
}

/* ==========================================================================
   11. FEATURES GRID SECTION
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-box {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 26px);
  transition: var(--transition);
  position: relative;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.feature-box.highlight-feature {
  border-color: var(--gold-primary);
  background: linear-gradient(135deg, rgba(30, 23, 7, 0.6) 0%, rgba(18, 22, 36, 0.9) 100%);
}

.feature-popular-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 800;
  background: var(--gold-gradient);
  color: #000;
  padding: 2px 7px;
  border-radius: 4px;
}

.f-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #171d30;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.feature-box h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.feature-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.f-check-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.8rem;
  color: #cbd5e1;
}

.f-check-list i {
  color: var(--neon-green);
  margin-right: 5px;
}

/* ==========================================================================
   12. PRICING BREAKDOWN SECTION
   ========================================================================== */
.pricing-section {
  background: #090c14;
}

.pricing-card-main {
  background: linear-gradient(135deg, rgba(22, 27, 44, 0.95) 0%, rgba(13, 16, 27, 0.95) 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 35px);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--shadow-gold);
}

.pricing-badge-ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #000;
  font-weight: 900;
  font-size: clamp(0.72rem, 2vw, 0.82rem);
  padding: 3px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-top-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 24px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .pricing-top-block {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.package-name h3 {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 900;
  color: #fff;
}

.package-name p {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--text-muted);
}

.original-strike {
  font-size: 0.9rem;
  color: #ef4444;
  text-decoration: line-through;
  display: block;
}

.actual-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}

.actual-price .curr {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--gold-primary);
}

.actual-price .num {
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.actual-price .per {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tax-info {
  display: block;
  font-size: 0.8rem;
  color: var(--neon-green);
  font-weight: 700;
  margin-top: 3px;
}

.pricing-checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .pricing-checklist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-check-col h4 {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.p-check-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.pricing-cta-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--border-glass);
  padding-top: 20px;
}

.cta-assurance {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.cta-assurance strong {
  color: #fff;
}

/* ==========================================================================
   13. QUOTE BUILDER SECTION
   ========================================================================== */
.quote-builder-section {
  position: relative;
}

.quote-builder-box {
  background: #101424;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 30px);
  box-shadow: var(--shadow-card);
}

.wa-icon-giant {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-wa);
}

.quote-header h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.quote-header p {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 24px;
}

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

.form-group-custom label {
  display: block;
  font-size: clamp(0.9rem, 2vw, 0.98rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.chip-selector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.custom-chip {
  background: #161b2e;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  user-select: none;
}

.custom-chip input {
  display: none;
}

.custom-chip.active {
  background: rgba(37, 211, 102, 0.15);
  border-color: var(--wa-green);
  color: #fff;
  font-weight: 700;
}

.custom-chip.active i {
  color: var(--wa-green);
  margin-right: 5px;
}

.custom-text-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.custom-text-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.25);
}

.quote-summary-bar {
  background: #161b2e;
  border-radius: var(--radius-md);
  padding: clamp(14px, 3vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .quote-summary-bar {
    flex-direction: row;
  }
}

.sum-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.sum-amount {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 900;
}

.wa-direct-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================================================
   14. 4-STEP PROCESS SECTION
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step-card {
  background: #111524;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: clamp(18px, 3vw, 24px) clamp(14px, 3vw, 18px);
  position: relative;
  transition: var(--transition);
}

.process-step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.step-num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.process-step-card h3 {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.process-step-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   15. FAQ ACCORDION SECTION
   ========================================================================== */
.faq-accordion-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #111524;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: clamp(14px, 3vw, 18px) clamp(16px, 3vw, 20px);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: clamp(0.92rem, 2.5vw, 1.02rem);
  font-weight: 700;
  text-align: left;
  gap: 10px;
}

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

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 350px;
}

.faq-answer p {
  padding: 0 clamp(16px, 3vw, 20px) 18px;
  font-size: clamp(0.85rem, 2vw, 0.92rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   16. FINAL CTA SECTION
   ========================================================================== */
.final-cta-card {
  position: relative;
  background: linear-gradient(135deg, #1f1402 0%, #151c14 50%, #0d1222 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: clamp(35px, 6vw, 55px) clamp(18px, 4vw, 35px);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.deal-tag {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.final-cta-card h2 {
  font-size: clamp(1.65rem, 4.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.final-cta-card p {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: #fde68a;
  max-width: 600px;
  margin: 0 auto 24px;
}

.final-btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 576px) {
  .final-btn-row {
    flex-direction: row;
  }
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.site-footer {
  background: #05060a;
  border-top: 1px solid var(--border-glass);
  padding: clamp(40px, 6vw, 60px) 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 35px;
}

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-about {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 3px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ==========================================================================
   18. FLOATING WHATSAPP & STICKY BOTTOM BAR
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: calc(75px + env(safe-area-inset-bottom, 0px));
  right: 16px;
  background: var(--wa-gradient);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 999;
  font-weight: 800;
  font-size: 0.88rem;
  animation: waPulse 2s infinite;
  transition: var(--transition);
}

@media (min-width: 992px) {
  .floating-wa-btn {
    bottom: 25px;
    right: 25px;
  }
}

.floating-wa-btn i {
  font-size: 1.5rem;
}

.wa-badge-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff3366;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 13, 22, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  display: flex;
  z-index: 990;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  gap: 8px;
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  min-height: 44px;
}

.mobile-bar-btn.call {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--border-glass);
  flex: 0.38;
}

.mobile-bar-btn.whatsapp {
  background: var(--wa-gradient);
  color: #fff;
  flex: 0.62;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   19. MODAL STYLING
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-container {
  background: #111524;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  position: relative;
  padding: clamp(18px, 4vw, 24px);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
