/* ====================================================
   SyncStream - SQUAP Inspired Glassmorphism Design System
   Model 3: Dual-Mode Interactive Simulator (Cinema & Voice Room)
   Live Strobi Avatars throughout Hero Section
   Comprehensive FAQs & Dual-Action Launchers
   ==================================================== */

:root {
  --page: #08090d;
  --bg-surface: rgba(14, 16, 22, 0.9);
  --glass-blur: blur(24px);
  --font-sans: 'Sora', 'Vazirmatn', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Vazirmatn', system-ui, -apple-system, sans-serif;
  --font-persian: 'Vazirmatn', system-ui, -apple-system, sans-serif;

  --text-main: rgba(255, 255, 255, 0.92);
  --text-primary: rgba(255, 255, 255, 0.98);
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.65);
  --text-dim: rgba(255, 255, 255, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.08);

  --glass-bg: rgba(10, 11, 15, 0.68);
  --glass-bg-card: rgba(13, 15, 20, 0.82);
  --glass-bg-elevated: rgba(18, 20, 28, 0.88);

  --glass-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.5);
  --glass-card-shadow: 0 0 40px rgba(0, 0, 0, 0.65), inset 0 1px 1px rgba(255, 255, 255, 0.08);

  /* Accent: SQUAP Electric Sapphire & Indigo */
  --accent-main: #3650fd;
  --accent-main-glow: rgba(54, 80, 253, 0.45);
  --accent-glow: rgba(68, 92, 254, 0.8);
  --theme-btn-border: rgba(68, 92, 254, 0.4);
  --theme-badge-bg: rgba(68, 92, 254, 0.12);
  --theme-badge-color: #7c9dff;
  --theme-badge-border: rgba(68, 92, 254, 0.25);

  /* SQUAP Rounded Tokens */
  --radius-pill: 9999px;
  --radius-2xl: 24px;
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-persian);
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body.bg-mode-matrix {
  background-color: var(--page);
  color: var(--text-main);
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
}

/* 3D Canvas Background */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Modern Linear Dot Matrix Grid Overlay */
.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* SQUAP Typography & Electric Accents */
.text-electric-blue {
  color: #7c9dff;
  text-shadow: 0 0 15px rgba(68, 92, 254, 0.6);
}
.gradient-text-squap {
  background: linear-gradient(135deg, #8ba8ff 0%, #3650fd 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(54, 80, 253, 0.4);
}

/* App Header */
.app-header-squap {
  position: sticky;
  top: 14px;
  z-index: 100;
  transition: all 0.3s ease;
}
.header-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  box-shadow: var(--glass-shadow);
}
.brand-box-squap {
  display: flex;
  align-items: center;
}
.brand-name-squap {
  font-size: 1.35rem;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.5px;
  white-space: nowrap;
  user-select: none;
}

.nav-links-squap {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-item-squap {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 2px;
  background: transparent;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nav-item-squap:hover {
  color: rgba(255, 255, 255, 0.88);
}
.nav-item-squap.active {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.75);
}
.nav-item-squap::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  left: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #3650fd 0%, #38bdf8 100%);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-item-squap.active::after {
  transform: scaleX(1);
}
.header-actions-squap {
  display: flex;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  touch-action: manipulation;
  white-space: nowrap;
}
.btn-squap-primary {
  background: linear-gradient(135deg, #3650fd 0%, #4f67fe 100%);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-main-glow);
  border: 1px solid var(--theme-btn-border);
}
.btn-squap-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(54, 80, 253, 0.7);
}
.btn-squap-glass {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}
.btn-squap-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-header-login {
  padding: 8px 20px;
  font-size: 0.88rem;
}
.btn-header-login i { width: 16px; height: 16px; }

/* Hero Section */
.hero-section-squap {
  padding: 55px 0 40px;
  text-align: center;
  scroll-margin-top: 130px;
}
.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: var(--theme-badge-bg);
  border: 1px solid var(--theme-badge-border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--theme-badge-color);
  margin-bottom: 20px;
}
.hero-strobi-mini {
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-strobi-mini strobi-avatar {
  width: 26px !important; height: 26px !important;
  display: block;
}
.hero-headline-squap {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero-subtext-squap {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

/* ====================================================
   INTEGRATED DUAL-MODE ROOM SWITCHER HEADER (Desktop & Mobile)
   ==================================================== */
.integrated-room-switcher-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 14, 22, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  gap: 12px;
  border-top-left-radius: var(--radius-2xl);
  border-top-right-radius: var(--radius-2xl);
}
.integrated-room-switcher-header .room-mode-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}
.integrated-room-switcher-header .room-mode-pill-btn i { width: 16px; height: 16px; }
.integrated-room-switcher-header .room-mode-pill-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.integrated-room-switcher-header .room-mode-pill-btn.active {
  background: linear-gradient(135deg, #3650fd 0%, #4f67fe 100%);
  border-color: #3650fd;
  color: #fff;
  box-shadow: 0 0 20px rgba(54, 80, 253, 0.5);
}

/* Simulator Switcher Visibility */
.simulator-mode-view {
  display: none;
  animation: fadeInSimulator 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.simulator-mode-view.active {
  display: block;
}
@keyframes fadeInSimulator {
  0% { opacity: 0; transform: scale(0.985); }
  100% { opacity: 1; transform: scale(1); }
}

/* ====================================================
   FLOATING GLASS DECK CINEMA & VOICE SIMULATORS
   ==================================================== */
.virtual-lounge-wrap {
  margin-bottom: 35px;
  perspective: 1200px;
}
.real-room-card {
  background: var(--glass-bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  box-shadow: var(--glass-card-shadow);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.1, 1, 0.1, 1);
}

.real-room-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(10, 11, 15, 0.9);
  border-bottom: 1px solid var(--border-subtle);
  gap: 12px;
}
.voice-theme-header {
  background: rgba(12, 16, 26, 0.95);
  border-bottom-color: rgba(54, 80, 253, 0.2);
}
.room-head-left, .room-head-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.room-tag-capsule {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.room-tag-capsule .tag-icon { width: 15px; height: 15px; color: var(--theme-badge-color); }
.room-tag-capsule.voice-accent .tag-icon { color: #34d399; }

.users-count-capsule {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.users-count-capsule i { width: 14px; height: 14px; color: #38bdf8; }

.voice-status-capsule {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  color: #34d399;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.voice-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}
.voice-status-capsule i { width: 14px; height: 14px; }

.sync-ping-capsule {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #7c9dff;
  background: var(--theme-badge-bg);
  border: 1px solid var(--theme-badge-border);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.sync-ping-capsule i { width: 13px; height: 13px; }

.immersive-stage-wrap {
  padding: 24px;
  background: radial-gradient(circle at 50% 20%, rgba(26, 32, 58, 0.45) 0%, rgba(10, 11, 15, 0.95) 80%);
}
.voice-stage-wrap {
  background: radial-gradient(circle at 50% 20%, rgba(16, 36, 68, 0.55) 0%, rgba(8, 11, 18, 0.95) 80%);
}

.real-player-container {
  width: 100%;
  height: 420px;
  background: #000;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 35px rgba(54, 80, 253, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.screen-light-halo {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle at center, rgba(54, 80, 253, 0.35) 0%, rgba(6, 182, 212, 0.18) 50%, transparent 80%);
  filter: blur(35px);
  pointer-events: none;
}
.voice-light-halo {
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.25) 0%, rgba(54, 80, 253, 0.25) 50%, transparent 80%);
}

.real-video-screen {
  position: relative;
  width: 100%; height: 100%;
  background: url('movies/in03.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px;
  transition: background-image 0.6s ease;
}

/* Voice Room Board Screen */
.voice-board-screen {
  background: linear-gradient(145deg, #090c14 0%, #0d121e 100%);
  border-color: rgba(54, 80, 253, 0.35);
}
.meeting-screen-inner {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px;
  background: radial-gradient(circle at center, rgba(30, 48, 86, 0.25) 0%, transparent 70%);
}

.real-screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}
.movie-title-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  font-size: 0.84rem;
  color: #fff;
}
.movie-title-chip i { width: 14px; height: 14px; color: var(--theme-badge-color); }
.security-lock-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: #34d399;
}
.security-lock-chip i { width: 13px; height: 13px; }

/* Meeting Center Visualizer */
.meeting-center-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 5;
  pointer-events: none;
}
.meeting-wave-animation {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 48px;
}
.wave-bar {
  width: 5px;
  background: linear-gradient(to top, #3650fd, #38bdf8);
  border-radius: 4px;
  animation: pulseWave 1.4s ease-in-out infinite alternate;
}
.wave-bar:nth-child(1) { height: 18px; animation-delay: 0.1s; }
.wave-bar:nth-child(2) { height: 36px; animation-delay: 0.3s; }
.wave-bar:nth-child(3) { height: 48px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 42px; animation-delay: 0.4s; }
.wave-bar:nth-child(5) { height: 28px; animation-delay: 0.15s; }
.wave-bar:nth-child(6) { height: 14px; animation-delay: 0.35s; }

@keyframes pulseWave {
  0% { transform: scaleY(0.4); opacity: 0.5; }
  100% { transform: scaleY(1.1); opacity: 1; }
}

.meeting-active-speaker-text {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 12, 18, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  color: #cbd5e1;
}
.meeting-active-speaker-text i { width: 15px; height: 15px; color: #34d399; animation: speakPulse 1.2s infinite; }
@keyframes speakPulse { 0% { opacity: 0.5; } 100% { opacity: 1; } }

/* Meeting Bottom Interactive Toolbar */
.meeting-bottom-control-dock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(10, 12, 18, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  width: fit-content;
  margin: 0 auto;
  z-index: 20;
}
.btn-meet-ctrl {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  touch-action: manipulation;
}
.btn-meet-ctrl i { width: 17px; height: 17px; }
.btn-meet-ctrl:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.btn-meet-ctrl.active {
  background: rgba(54, 80, 253, 0.85);
  border-color: #3650fd;
  box-shadow: 0 0 15px rgba(54, 80, 253, 0.5);
}
.btn-meet-ctrl.muted-state {
  background: rgba(239, 68, 68, 0.85);
  border-color: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}
.btn-meet-ctrl.end-call {
  background: #dc2626;
  border-color: #ef4444;
}

/* Screen Top Toast Notification */
.screen-top-toast {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  background: rgba(10, 12, 18, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(54, 80, 253, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 30;
  white-space: nowrap;
}
.screen-top-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.screen-top-toast i { width: 15px; height: 15px; color: #7c9dff; }

.real-play-trigger {
  position: absolute;
  top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(54, 80, 253, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(54, 80, 253, 0.75);
  transition: all 0.3s ease;
  z-index: 6;
  touch-action: manipulation;
}
.real-play-trigger:hover, .real-play-trigger:active {
  transform: translate(-50%, -50%) scale(1.12);
  background: #4f67fe;
}

.screen-reactions-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 20;
}
.screen-floating-emoji {
  position: absolute;
  bottom: 25px;
  font-size: 2.5rem;
  user-select: none;
  animation: floatEmojiUp 2.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7));
  z-index: 25;
}
@keyframes floatEmojiUp {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  15% { transform: translateY(-30px) scale(1.3); opacity: 1; }
  75% { opacity: 1; }
  100% { transform: translateY(-240px) scale(0.9); opacity: 0; }
}

.real-reactions-side-dock {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(10, 12, 18, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 6px;
  z-index: 15;
}
.side-react-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  touch-action: manipulation;
}
.side-react-btn:hover, .side-react-btn:active {
  transform: scale(1.25);
  background: rgba(255, 255, 255, 0.2);
}

/* 3 & 4 Floating Avatar Cards (Desktop) */
.floating-hud-avatar-card {
  position: absolute;
  background: rgba(10, 12, 18, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 8px 14px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  animation: gentleProfileFloat 4s ease-in-out infinite alternate;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.floating-hud-avatar-card.host-pos { right: 8%; bottom: 120px; border-color: rgba(236, 72, 153, 0.35); animation-delay: 0s; }
.floating-hud-avatar-card.guest-pos { left: calc(28% + 40px); bottom: 14px; border-color: rgba(54, 80, 253, 0.35); animation-delay: 2s; }
.floating-hud-avatar-card.top-guest-pos { left: calc(8% + 30px); top: 73px; border-color: rgba(192, 132, 252, 0.4); animation-delay: 1s; }

/* Voice Deck 4 Distinct Balanced Positions */
.voice-card-pos1 { right: 5%; top: 110px; border-color: rgba(236, 72, 153, 0.3); animation-delay: 0s; }
.voice-card-pos2 { right: 15%; bottom: 55px; border-color: rgba(54, 80, 253, 0.3); animation-delay: 1.5s; }
.voice-card-pos3 { left: 5%; top: 110px; border-color: rgba(192, 132, 252, 0.3); animation-delay: 2.2s; }
.voice-card-pos4 { left: 15%; bottom: 55px; border-color: rgba(16, 185, 129, 0.3); animation-delay: 0.8s; }

/* Glowing Speaking Box Halo Around Active Profile Card */
#tile-host.is-speaking, #vcard-niloufar.is-speaking {
  box-shadow: 0 0 28px rgba(236, 72, 153, 0.7), 0 8px 24px rgba(0, 0, 0, 0.7);
  border-color: #ec4899;
}
#tile-guest.is-speaking, #vcard-amirreza.is-speaking {
  box-shadow: 0 0 28px rgba(54, 80, 253, 0.7), 0 8px 24px rgba(0, 0, 0, 0.7);
  border-color: #3650fd;
}
#tile-top-guest.is-speaking, #vcard-sara.is-speaking {
  box-shadow: 0 0 28px rgba(192, 132, 252, 0.7), 0 8px 24px rgba(0, 0, 0, 0.7);
  border-color: #c084fc;
}
#vcard-farhad.is-speaking {
  box-shadow: 0 0 28px rgba(16, 185, 129, 0.7), 0 8px 24px rgba(0, 0, 0, 0.7);
  border-color: #10b981;
}

@keyframes gentleProfileFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-7px); }
}

.hud-avatar-inner { display: flex; align-items: center; gap: 10px; }
.meet-avatar-box.mini { position: relative; width: 56px; height: 56px; flex-shrink: 0; }
.meet-avatar-box.mini strobi-avatar { width: 54px !important; height: 54px !important; display: block; }
.strobi-avatar-container { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

.host-pink-color { filter: drop-shadow(0 0 16px rgba(236, 72, 153, 0.7)); }
.guest-blue-color { filter: drop-shadow(0 0 16px rgba(54, 80, 253, 0.7)); }
.guest-purple-color { filter: drop-shadow(0 0 16px rgba(192, 132, 252, 0.75)); }
.guest-green-color { filter: drop-shadow(0 0 16px rgba(16, 185, 129, 0.75)); }

.meet-speaking-halo.pink-halo { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #ec4899; animation: speakHaloPink 1.8s infinite; opacity: 0.9; }
.meet-speaking-halo.blue-halo { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #3650fd; animation: speakHaloBlue 1.8s infinite; opacity: 0.9; }
.meet-speaking-halo.purple-halo { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #c084fc; animation: speakHaloPurple 1.8s infinite; opacity: 0.9; }
.meet-speaking-halo.green-halo { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #10b981; animation: speakHaloGreen 1.8s infinite; opacity: 0.9; }

@keyframes speakHaloPink { 0% { transform: scale(0.96); opacity: 0.9; } 100% { transform: scale(1.3); opacity: 0; } }
@keyframes speakHaloBlue { 0% { transform: scale(0.96); opacity: 0.9; } 100% { transform: scale(1.3); opacity: 0; } }
@keyframes speakHaloPurple { 0% { transform: scale(0.96); opacity: 0.9; } 100% { transform: scale(1.3); opacity: 0; } }
@keyframes speakHaloGreen { 0% { transform: scale(0.96); opacity: 0.9; } 100% { transform: scale(1.3); opacity: 0; } }

.hud-meta { display: flex; flex-direction: column; gap: 3px; }
.hud-name { font-size: 0.84rem; font-weight: 700; color: #fff; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.hud-substatus { font-size: 0.72rem; color: var(--text-dim); }
.mic-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  font-size: 0.6rem;
}
.mic-badge.on { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.mic-badge.muted { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.mic-badge i { width: 10px; height: 10px; }

.btn-hud-act { background: rgba(255, 255, 255, 0.1); border: 1px solid var(--border-subtle); color: #fff; font-size: 0.74rem; padding: 4px 10px; border-radius: var(--radius-pill); cursor: pointer; transition: all 0.2s ease; touch-action: manipulation; }
.btn-hud-act.mini { padding: 2px 8px; font-size: 0.68rem; }
.btn-hud-act:hover { background: #3650fd; }

/* Desktop Cloud Bubbles (Strictly Single Active Speaker) */
.cloud-bubble {
  background: #ffffff;
  color: #0f172a;
  padding: 8px 15px;
  font-size: 0.78rem;
  font-weight: 800;
  position: absolute;
  bottom: calc(100% + 10px);
  top: auto;
  white-space: normal;
  width: max-content;
  max-width: 260px;
  line-height: 1.45;
  text-align: right;
  direction: rtl;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
  transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 20;
}
.cloud-bubble.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.cloud-bubble.cloud-tail-host, .cloud-bubble.cloud-tail-guest, .cloud-bubble.cloud-tail-top-guest {
  border-radius: 18px 18px 4px 18px;
  right: 0;
  left: auto;
}
.cloud-bubble.cloud-tail-host::after, .cloud-bubble.cloud-tail-guest::after, .cloud-bubble.cloud-tail-top-guest::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 24px;
  left: auto;
  width: 9px; height: 9px;
  background: #ffffff;
  border-radius: 50%;
}
.cloud-bubble.cloud-tail-host::before, .cloud-bubble.cloud-tail-guest::before, .cloud-bubble.cloud-tail-top-guest::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 32px;
  left: auto;
  width: 5px; height: 5px;
  background: #ffffff;
  border-radius: 50%;
}

.cloud-bubble.cloud-tail-left {
  border-radius: 18px 18px 18px 4px;
  left: 0;
  right: auto;
}
.cloud-bubble.cloud-tail-left::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 24px;
  right: auto;
  width: 9px; height: 9px;
  background: #ffffff;
  border-radius: 50%;
}
.cloud-bubble.cloud-tail-left::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 32px;
  right: auto;
  width: 5px; height: 5px;
  background: #ffffff;
  border-radius: 50%;
}

/* Mobile VIP Row */
.vip-bottom-audience-deck {
  display: none;
  margin-top: 14px;
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 14px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.vip-deck-title { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 12px; }
.vip-deck-title i { width: 14px; height: 14px; color: #7c9dff; }
.vip-deck-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vip-deck-cards-row.voice-4cols { grid-template-columns: repeat(4, 1fr); gap: 6px; }

.vip-single-seat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 8px 4px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  transition: all 0.25s ease;
  min-height: 162px;
}
.vip-single-seat.is-speaking { border-color: rgba(54, 80, 253, 0.6); background: rgba(54, 80, 253, 0.08); }

.vip-bubble-slot { width: 100%; min-height: 44px; display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 4px; }
.vip-bubble {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.3;
  padding: 5px 6px;
  white-space: normal;
  text-align: center;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: #ffffff;
  color: #0f172a;
}
.vip-bubble.is-active { opacity: 1; pointer-events: auto; transform: scale(1); }
.vip-bubble::after { content: ""; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; background: #ffffff; border-radius: 50%; }

.vip-avatar-wrap { position: relative; width: 44px; height: 44px; }
.vip-avatar-wrap strobi-avatar { width: 42px !important; height: 42px !important; display: block; }
.vip-name { font-size: 0.74rem; font-weight: 700; color: #fff; }
.vip-mic-tag {
  font-size: 0.62rem;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}
.vip-mic-tag.on { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.vip-mic-tag.muted { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.vip-mic-tag i { width: 10px; height: 10px; }

/* Banner */
.fast-action-banner { margin-top: 30px; }
.banner-card-squap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(54, 80, 253, 0.14) 0%, rgba(22, 24, 32, 0.8) 100%);
  border: 1px solid var(--theme-badge-border);
  border-radius: var(--radius-2xl);
  padding: 24px 32px;
  box-shadow: var(--glass-card-shadow);
}
.banner-text-info { display: flex; align-items: center; gap: 16px; text-align: right; }
.banner-strobi-mascot {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 16px rgba(192, 132, 252, 0.6));
}
.banner-strobi-mascot strobi-avatar {
  width: 50px !important; height: 50px !important;
  display: block;
}
.banner-text-info h4 { font-size: 1.22rem; font-weight: 800; margin-bottom: 4px; }
.banner-text-info p { font-size: 0.9rem; color: var(--text-secondary); }
.banner-dual-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-large-cta { padding: 12px 24px !important; font-size: 0.96rem !important; }

/* ====================================================
   SHARED SECTION STYLES
   ==================================================== */
.section-squap-block {
  padding: 85px 0 80px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}
.section-squap-block.alt-bg {
  background: rgba(10, 12, 17, 0.45);
}
.section-heading-squap {
  text-align: center;
  margin-bottom: 50px;
}
.heading-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--theme-badge-color);
  background: var(--theme-badge-bg);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--theme-badge-border);
  margin-bottom: 14px;
}
.section-heading-squap h2 {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-heading-squap p {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* ====================================================
   SECTION 1: HOW IT WORKS (3 STEPS)
   ==================================================== */
.steps-grid-squap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card-squap {
  background: var(--glass-bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: 34px 26px;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}
.step-card-squap:hover {
  transform: translateY(-6px);
  border-color: var(--theme-btn-border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6), 0 0 30px rgba(54, 80, 253, 0.2);
}
.step-badge-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
}
.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.step-icon-wrap.blue { background: rgba(54, 80, 253, 0.16); color: #7c9dff; border: 1px solid rgba(54, 80, 253, 0.35); }
.step-icon-wrap.cyan { background: rgba(6, 182, 212, 0.16); color: #38bdf8; border: 1px solid rgba(6, 182, 212, 0.35); }
.step-icon-wrap.purple { background: rgba(168, 85, 247, 0.16); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.35); }
.step-icon-wrap i { width: 24px; height: 24px; }
.step-card-squap h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.step-card-squap p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ====================================================
   SECTION 2: USE-CASES
   ==================================================== */
.usecases-grid-squap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.usecase-card-squap {
  background: var(--glass-bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}
.usecase-card-squap:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6);
}
.usecase-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 18px;
}
.usecase-tag-pill.pink { background: rgba(236, 72, 153, 0.12); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.25); }
.usecase-tag-pill.blue { background: rgba(54, 80, 253, 0.12); color: #7c9dff; border: 1px solid rgba(54, 80, 253, 0.25); }
.usecase-tag-pill.green { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.25); }
.usecase-tag-pill i { width: 14px; height: 14px; }
.usecase-card-squap h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.4;
}
.usecase-card-squap p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.usecase-mini-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

/* ====================================================
   SECTION 3: COMPARISON (OLD WAY VS SYNCSTREAM)
   ==================================================== */
.comparison-board-squap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1050px;
  margin: 0 auto;
}
.comparison-column {
  border-radius: var(--radius-2xl);
  padding: 34px 30px;
  backdrop-filter: var(--glass-blur);
  transition: all 0.3s ease;
}
.comparison-column.old-way {
  background: rgba(22, 16, 18, 0.65);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.comparison-column.new-way {
  background: linear-gradient(145deg, rgba(16, 24, 48, 0.85) 0%, rgba(10, 14, 24, 0.95) 100%);
  border: 1px solid rgba(54, 80, 253, 0.45);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(54, 80, 253, 0.2);
}
.comp-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.comp-status-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comp-status-icon.bad { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.comp-status-icon.good { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.comp-status-icon i { width: 22px; height: 22px; }
.comp-col-header h3 { font-size: 1.25rem; font-weight: 800; }
.comp-col-header span { font-size: 0.82rem; color: var(--text-dim); }

.comp-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comp-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.65;
}
.comp-features-list li span { color: var(--text-secondary); }
.comparison-column.new-way .comp-features-list li span { color: var(--text-main); font-weight: 500; }
.icon-bad { width: 18px; height: 18px; color: #f87171; flex-shrink: 0; margin-top: 3px; }
.icon-good { width: 18px; height: 18px; color: #34d399; flex-shrink: 0; margin-top: 3px; }

/* ====================================================
   SECTION 5: FAQ ACCORDION
   ==================================================== */
.faq-accordion-wrap {
  max-width: 880px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item-squap {
  background: var(--glass-bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-item-squap:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.faq-item-squap.is-open {
  border-color: var(--theme-btn-border);
  background: rgba(18, 22, 34, 0.88);
}
.faq-question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  gap: 16px;
}
.faq-question-row h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
}
.faq-arrow {
  width: 18px;
  height: 18px;
  color: var(--theme-badge-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item-squap.is-open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 24px;
}
.faq-item-squap.is-open .faq-answer-content {
  max-height: 1000px;
  padding: 0 24px 22px;
}
.faq-answer-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Collapsible Inner Guide for Personal Key */
.faq-sub-guide-box {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(54, 80, 253, 0.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-sub-guide-box.is-expanded {
  border-color: rgba(54, 80, 253, 0.6);
  background: rgba(20, 26, 42, 0.85);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(54, 80, 253, 0.18);
}
.faq-sub-guide-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: #7c9dff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sub-guide-title-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sub-guide-icon {
  width: 16px; height: 16px;
  color: #38bdf8;
}
.sub-guide-arrow {
  width: 16px; height: 16px;
  color: #7c9dff;
  transition: transform 0.3s ease;
}
.faq-sub-guide-box.is-expanded .sub-guide-arrow {
  transform: rotate(180deg);
}
.faq-sub-guide-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 16px;
}
.faq-sub-guide-box.is-expanded .faq-sub-guide-content {
  max-height: 500px;
  padding: 8px 16px 16px;
}
.guide-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.guide-step-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.6;
}
.guide-step-badge {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3650fd, #38bdf8);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.guide-step-item strong {
  color: #fff;
  display: inline-block;
  margin-bottom: 2px;
}
.guide-step-item p {
  color: var(--text-secondary) !important;
  font-size: 0.84rem !important;
  margin: 0 !important;
}

/* Free Plan Limits Grid & VIP Upgrade Banner in FAQ */
.free-plan-limits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin-top: 6px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.free-limit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-secondary);
}
.free-limit-item strong {
  color: #fff;
  font-weight: 700;
}
.limit-dot.red {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #f87171;
  box-shadow: 0 0 8px rgba(248, 113, 113, 0.8);
  flex-shrink: 0;
}

.faq-direct-vip-bar {
  margin: 12px 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.upgrade-cta-text {
  font-size: 0.84rem;
  color: #e2e8f0;
}
.btn-vip-plan-link {
  background: linear-gradient(135deg, #a855f7 0%, #3650fd 100%);
  border: 1px solid rgba(192, 132, 252, 0.45);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.35);
  padding: 6px 14px !important;
  font-size: 0.8rem !important;
  border-radius: var(--radius-pill) !important;
  gap: 6px !important;
}
.btn-vip-plan-link i {
  width: 14px;
  height: 14px;
}
.btn-vip-plan-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.65);
}

/* ====================================================
   HIGH-IMPACT FINAL CTA BLOCK WITH STROBI MASCOT
   ==================================================== */
.final-cta-block {
  max-width: 980px;
  margin: 75px auto 0 auto;
  position: relative;
}
.final-cta-card-squap {
  position: relative;
  background: linear-gradient(135deg, rgba(30, 42, 90, 0.65) 0%, rgba(12, 14, 22, 0.95) 100%);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(54, 80, 253, 0.4);
  border-radius: var(--radius-2xl);
  padding: 55px 32px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(54, 80, 253, 0.25);
}
.final-cta-glow-halo {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 20%, rgba(54, 80, 253, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-content {
  position: relative;
  z-index: 1;
}
.final-cta-strobi-wrap {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.8));
}
.final-cta-strobi-wrap strobi-avatar {
  width: 60px !important; height: 60px !important;
  display: block;
}
.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #7c9dff;
  background: rgba(54, 80, 253, 0.18);
  border: 1px solid rgba(54, 80, 253, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.final-cta-badge i { width: 15px; height: 15px; }
.final-cta-card-squap h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.final-cta-card-squap p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-final-large {
  padding: 14px 32px !important;
  font-size: 1.02rem !important;
}

/* ====================================================
   FROSTED GLASS FOOTER WITH DEV SQUAD & QUICK ACCESS
   ==================================================== */
.app-footer-squap {
  position: relative;
  background: rgba(8, 10, 16, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 65px 0 35px;
  z-index: 10;
}

/* 1. Developer Squad Intro Card */
.footer-dev-squad-card {
  position: relative;
  background: linear-gradient(135deg, rgba(54, 80, 253, 0.12) 0%, rgba(18, 22, 34, 0.85) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(54, 80, 253, 0.28);
  border-radius: var(--radius-2xl);
  padding: 22px 28px;
  max-width: 860px;
  margin: 0 auto 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}
.footer-dev-squad-card.right-aligned-compact .dev-squad-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: right;
}
.footer-dev-squad-card.right-aligned-compact .dev-squad-avatar-box {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.squad-avatar-white {
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.75));
}
.squad-avatar-white strobi-avatar {
  width: 52px !important;
  height: 52px !important;
}
.footer-dev-squad-card.right-aligned-compact .dev-squad-text {
  flex: 1;
}
.footer-dev-squad-card.right-aligned-compact .dev-squad-text h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}
.footer-dev-squad-card.right-aligned-compact .dev-squad-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.dev-squad-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(54, 80, 253, 0.22), transparent 70%);
  pointer-events: none;
}

/* 2. Quick Access Navigation Grid */
.footer-nav-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 45px;
}
.footer-grid-col.brand-col .footer-brand-title {
  font-size: 1.45rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 10px;
}
.footer-brand-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 320px;
}
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  will-change: transform;
}
.social-icon-btn svg {
  display: block;
  transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
.social-icon-btn:hover {
  transform: translateY(-2px);
}
.social-icon-btn:hover svg {
  transform: scale(1.05);
}
.social-icon-btn.is-instagram:hover {
  background: rgba(225, 48, 108, 0.18);
  border-color: rgba(225, 48, 108, 0.65);
  box-shadow: 0 6px 16px rgba(225, 48, 108, 0.35);
}
.social-icon-btn.is-telegram:hover {
  background: rgba(34, 158, 217, 0.18);
  border-color: rgba(34, 158, 217, 0.65);
  box-shadow: 0 6px 16px rgba(34, 158, 217, 0.35);
}
.social-icon-btn.is-x:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.25);
}
.social-icon-btn.is-bale:hover {
  background: rgba(41, 197, 121, 0.18);
  border-color: rgba(41, 197, 121, 0.65);
  box-shadow: 0 6px 16px rgba(41, 197, 121, 0.35);
}
.social-icon-btn.is-linkedin:hover {
  background: rgba(10, 102, 194, 0.18);
  border-color: rgba(10, 102, 194, 0.65);
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.35);
}
.footer-col-heading {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 2px;
  background: #3650fd;
  border-radius: 2px;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.footer-links-list a i {
  width: 14px;
  height: 14px;
  color: #7c9dff;
  opacity: 0.75;
  transition: all 0.25s ease;
}
.footer-links-list a:hover {
  color: #fff;
  transform: translateX(-4px);
}
.footer-links-list a:hover i {
  color: #38bdf8;
  opacity: 1;
}

/* 3. Footer Bottom Row */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  color: #34d399;
  font-size: 0.78rem;
  font-weight: 700;
}
.pulse-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: speakPulse 1.5s infinite;
}

/* ====================================================
   RESPONSIVE (MOBILE & TABLET)
   ==================================================== */
@media (max-width: 768px) {
  .container { padding: 0 14px; }
  .app-header-squap { top: 6px; padding: 0 4px; }
  .header-content-row { padding: 6px 14px; min-height: 44px; border-radius: var(--radius-pill); }
  .brand-name-squap { font-size: 1.15rem; font-weight: 900; }
  .nav-links-squap { display: none; }
  .btn-header-login { padding: 6px 14px; font-size: 0.78rem; border-radius: var(--radius-pill); }
  
  .hero-section-squap { padding: 24px 0 20px; }
  .hero-tagline-badge { font-size: 0.72rem; padding: 4px 10px; margin-bottom: 12px; }
  .hero-headline-squap { font-size: 1.95rem; margin-bottom: 12px; }
  .hero-subtext-squap { font-size: 0.92rem; margin-bottom: 20px; }

  .integrated-room-switcher-header {
    padding: 8px 10px;
    gap: 8px;
  }
  .integrated-room-switcher-header .room-mode-pill-btn {
    flex: 1;
    padding: 8px 10px;
    font-size: 0.78rem;
    gap: 6px;
  }
  .integrated-room-switcher-header .room-mode-pill-btn i {
    width: 14px;
    height: 14px;
  }

  .virtual-lounge-wrap { margin-bottom: 20px; }
  .immersive-stage-wrap { padding: 10px; }

  .real-player-container { height: 240px; border-radius: var(--radius-lg); }
  #in-screen-avatars, .voice-avatars-deck { display: none; }
  .vip-bottom-audience-deck { display: block; }
  .real-reactions-side-dock { left: 6px; padding: 4px 3px; gap: 3px; }
  .side-react-btn { width: 26px; height: 26px; font-size: 0.9rem; }
  .real-play-trigger { width: 50px; height: 50px; left: 50%; }

  .meeting-wave-animation { height: 32px; }
  .meeting-active-speaker-text { font-size: 0.72rem; padding: 4px 10px; }
  .meeting-bottom-control-dock { padding: 6px 10px; gap: 6px; }
  .btn-meet-ctrl { width: 34px; height: 34px; }
  .btn-meet-ctrl i { width: 14px; height: 14px; }

  .banner-card-squap { flex-direction: column; padding: 18px 16px; gap: 14px; text-align: center; }
  .banner-text-info { flex-direction: column; text-align: center; gap: 8px; }
  .banner-text-info h4 { font-size: 1.05rem; }
  .banner-text-info p { font-size: 0.82rem; }
  .banner-dual-buttons { width: 100%; flex-direction: column; gap: 8px; }
  .btn-large-cta { width: 100%; padding: 11px 16px !important; font-size: 0.9rem !important; }

  .section-squap-block { padding: 50px 0 45px; }
  .section-heading-squap { margin-bottom: 30px; }
  .section-heading-squap h2 { font-size: 1.65rem; }
  .section-heading-squap p { font-size: 0.88rem; }

  .steps-grid-squap, .usecases-grid-squap, .comparison-board-squap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-card-squap, .usecase-card-squap, .comparison-column {
    padding: 24px 18px;
  }

  .faq-question-row { padding: 16px 18px; }
  .faq-question-row h4 { font-size: 0.92rem; }
  .faq-item-squap.is-open .faq-answer-content { padding: 0 18px 18px; }

  .final-cta-block { margin-top: 50px; }
  .final-cta-card-squap { padding: 36px 18px; }
  .final-cta-card-squap h2 { font-size: 1.7rem; }
  .final-cta-card-squap p { font-size: 0.9rem; }
  .final-cta-actions { width: 100%; flex-direction: column; gap: 10px; }
  .btn-final-large { width: 100%; padding: 12px 20px !important; font-size: 0.95rem !important; }

  /* Mobile Footer */
  .app-footer-squap { padding: 45px 0 25px; }
  .footer-dev-squad-card { padding: 18px 16px; margin-bottom: 30px; }
  .footer-dev-squad-card.right-aligned-compact .dev-squad-inner { flex-direction: row; text-align: right; gap: 14px; }
  .footer-nav-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 30px; }
  .footer-grid-col.brand-col { text-align: center; }
  .footer-brand-desc { margin: 0 auto 16px; }
  .footer-social-links { justify-content: center; margin-bottom: 8px; }
  .footer-bottom-bar { flex-direction: column; text-align: center; gap: 12px; }
}


/* ══════════════════════════════════════════════════════════════════
   P4 VIP BENTO TIERS & COMPARISON TABLE STYLES
   ══════════════════════════════════════════════════════════════════ */
/* ====================================================
   SyncStream - Subscription Plans Design System
   Prototype 1: Bento Tiers (4-Col Desktop, 2x2 Grid Mobile)
   Port 3040 -> https://s.nixelshop.tr/p4/
   ==================================================== */

:root {
  --page: #08090d;
  --bg-surface: rgba(14, 16, 22, 0.9);
  --glass-blur: blur(24px);
  --font-sans: 'Sora', 'Vazirmatn', system-ui, sans-serif;
  --font-display: 'Outfit', 'Vazirmatn', system-ui, sans-serif;
  --font-persian: 'Vazirmatn', system-ui, sans-serif;

  --text-main: rgba(255, 255, 255, 0.92);
  --text-primary: rgba(255, 255, 255, 0.98);
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-dim: rgba(255, 255, 255, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.08);

  --glass-bg: rgba(10, 11, 15, 0.68);
  --glass-bg-card: rgba(13, 15, 22, 0.85);
  --glass-bg-elevated: rgba(18, 22, 32, 0.9);

  --glass-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.5);
  --glass-card-shadow: 0 0 40px rgba(0, 0, 0, 0.65), inset 0 1px 1px rgba(255, 255, 255, 0.08);

  --accent-main: #3650fd;
  --accent-main-glow: rgba(54, 80, 253, 0.45);
  --theme-badge-bg: rgba(68, 92, 254, 0.12);
  --theme-badge-color: #7c9dff;
  --theme-badge-border: rgba(68, 92, 254, 0.25);

  --radius-pill: 9999px;
  --radius-2xl: 24px;
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-persian);
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body.bg-mode-matrix {
  background-color: var(--page);
  color: var(--text-main);
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 1;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ====================================================
   HEADER & NAVBAR
   ==================================================== */
.app-header-squap {
  position: sticky;
  top: 14px;
  z-index: 1000;
  margin-bottom: 20px;
}
.header-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 14, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-height: 56px;
}
.brand-name-squap {
  font-size: 1.45rem;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.5px;
  color: #fff;
}
.text-electric-blue {
  color: #38bdf8;
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
}
.nav-links-squap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-item-squap {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 2px;
  background: transparent;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nav-item-squap:hover {
  color: rgba(255, 255, 255, 0.9);
}
.nav-item-squap.active {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.75);
}
.nav-item-squap::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  left: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #3650fd 0%, #38bdf8 100%);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-item-squap.active::after {
  transform: scaleX(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  touch-action: manipulation;
}
.btn-squap-primary {
  background: linear-gradient(135deg, #3650fd 0%, #4f67fe 100%);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-main-glow);
  border: 1px solid rgba(68, 92, 254, 0.4);
}
.btn-squap-primary:hover {
  background: linear-gradient(135deg, #445cfe 0%, #637afe 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(68, 92, 254, 0.7);
}
.btn-squap-glass {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-squap-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-header-login { padding: 8px 20px; font-size: 0.88rem; }
.btn-header-login i { width: 16px; height: 16px; }

/* ====================================================
   HERO SECTION & PRICING TIERS
   ==================================================== */
.plans-hero-section {
  padding: 45px 0 50px;
  text-align: center;
}
.plans-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: var(--theme-badge-bg);
  border: 1px solid var(--theme-badge-border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--theme-badge-color);
  margin-bottom: 24px;
}
.plans-strobi-icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
}
.plans-strobi-icon strobi-avatar { width: 26px !important; height: 26px !important; }
.plans-headline {
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 35px;
  letter-spacing: -1px;
}
.gradient-text-squap {
  background: linear-gradient(135deg, #ffffff 30%, #7c9dff 70%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DURATION SWITCHER */
.billing-period-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.billing-period-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(13, 16, 26, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 5px;
  gap: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.period-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}
.period-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.period-btn.active {
  background: linear-gradient(135deg, #3650fd 0%, #4f67fe 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(54, 80, 253, 0.55);
}

/* ====================================================
   PRICING BENTO GRID
   ==================================================== */
.pricing-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 35px;
}
.tier-card-squap {
  background: var(--glass-bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--glass-card-shadow);
}
.tier-card-squap:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

/* Featured VIP Card */
.tier-card-squap.featured {
  background: linear-gradient(180deg, rgba(28, 34, 58, 0.9) 0%, rgba(14, 17, 28, 0.95) 100%);
  border: 1.5px solid #3650fd;
  box-shadow: 0 0 35px rgba(54, 80, 253, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transform: scale(1.03);
}
.tier-card-squap.featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 0 45px rgba(54, 80, 253, 0.55);
}
.tier-glow-halo {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: radial-gradient(ellipse at top, rgba(54, 80, 253, 0.4), transparent 70%);
  pointer-events: none;
  border-top-left-radius: var(--radius-2xl);
  border-top-right-radius: var(--radius-2xl);
}
.tier-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3650fd 0%, #8b5cf6 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(54, 80, 253, 0.6);
  white-space: nowrap;
}
.tier-popular-tag i { width: 13px; height: 13px; }

/* Tier Info Elements */
.tier-header-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
}
.tier-header-icon-box.blue { background: rgba(56, 189, 248, 0.12); color: #38bdf8; border-color: rgba(56, 189, 248, 0.25); }
.tier-header-icon-box.purple { background: rgba(192, 132, 252, 0.12); color: #c084fc; border-color: rgba(192, 132, 252, 0.25); }
.tier-header-icon-box.gold { background: rgba(251, 191, 36, 0.12); color: #fbbf24; border-color: rgba(251, 191, 36, 0.25); }

.tier-name {
  font-size: 1.22rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.tier-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  min-height: 38px;
}

/* Price Box With Discount & Strikethrough */
.tier-price-box {
  margin: 16px 0 10px;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.price-old-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.price-old-val {
  font-size: 0.86rem;
  color: var(--text-dim);
  text-decoration: line-through;
  font-family: var(--font-display);
}
.price-discount-tag {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}
.tier-price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-val {
  font-size: 2.1rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: #fff;
  transition: all 0.25s ease;
}
.text-gradient-pro {
  background: linear-gradient(135deg, #ffffff 40%, #7c9dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-unit {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.tier-sub-period {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 3px;
}

.tier-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 12px 0 14px;
}
.tier-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex-grow: 1;
}
.tier-specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}
.tier-specs-list li.disabled {
  color: var(--text-dim);
  opacity: 0.55;
}
.icon-ok { width: 15px; height: 15px; color: #34d399; flex-shrink: 0; margin-top: 2px; }
.icon-no { width: 15px; height: 15px; color: #ef4444; flex-shrink: 0; margin-top: 2px; }
.btn-tier-action {
  width: 100%;
  padding: 11px 16px !important;
  font-size: 0.9rem !important;
}
.btn-pulse {
  animation: pulseButton 2s infinite;
}
@keyframes pulseButton {
  0% { box-shadow: 0 0 15px rgba(54, 80, 253, 0.5); }
  50% { box-shadow: 0 0 28px rgba(54, 80, 253, 0.8); }
  100% { box-shadow: 0 0 15px rgba(54, 80, 253, 0.5); }
}

/* ====================================================
   ENTERPRISE CALLOUT & TRUST BAR
   ==================================================== */
.enterprise-ticket-callout {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 24, 40, 0.85) 0%, rgba(10, 12, 20, 0.92) 100%);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  padding: 24px 32px;
  margin: 0 auto 35px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.ticket-callout-glow {
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
  pointer-events: none;
}
.ticket-callout-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: right;
  position: relative;
  z-index: 2;
}
.ticket-icon-box {
  width: 52px; height: 52px;
  border-radius: var(--radius-xl);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ticket-icon-box i { width: 24px; height: 24px; }
.ticket-text-box { flex: 1; }
.ticket-text-box h3 { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.ticket-text-box p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }
.btn-ticket-cta {
  padding: 11px 24px !important;
  font-size: 0.9rem !important;
  white-space: nowrap;
}

.pricing-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: rgba(14, 16, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  max-width: 960px;
  margin: 0 auto;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 600;
}
.trust-item i { width: 17px; height: 17px; color: #38bdf8; }

/* ====================================================
   TABLE & FAQ
   ==================================================== */
.section-squap-block {
  padding: 70px 0 65px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}
.section-squap-block.alt-bg {
  background: rgba(10, 12, 18, 0.45);
}
.section-heading-squap {
  text-align: center;
  margin-bottom: 45px;
}
.heading-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--theme-badge-color);
  background: var(--theme-badge-bg);
  border: 1px solid var(--theme-badge-border);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.section-heading-squap h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
}
.section-heading-squap p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.table-glass-container {
  background: var(--glass-bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--glass-card-shadow);
}
.plans-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.9rem;
}
.plans-compare-table th {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.plans-compare-table th.feature-col { text-align: right; width: 34%; }
.plans-compare-table th.highlight-th {
  background: rgba(54, 80, 253, 0.2);
  color: #7c9dff;
  border-bottom-color: #3650fd;
}
.plans-compare-table td {
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}
.plans-compare-table td.feature-title {
  text-align: right;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
}
.plans-compare-table td.feature-title i { width: 16px; height: 16px; color: #7c9dff; }
.plans-compare-table td.highlight-td {
  background: rgba(54, 80, 253, 0.08);
}
.badge-good { color: #34d399; font-weight: 700; }

/* FAQ */
.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item-squap {
  background: var(--glass-bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-item-squap:hover { border-color: rgba(255, 255, 255, 0.18); }
.faq-item-squap.is-open {
  border-color: rgba(54, 80, 253, 0.4);
  background: rgba(16, 20, 32, 0.9);
}
.faq-question-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.faq-question-row h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
}
.faq-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  transition: transform 0.3s ease;
}
.faq-item-squap.is-open .faq-arrow {
  transform: rotate(180deg);
  color: #7c9dff;
}
.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}
.faq-item-squap.is-open .faq-answer-content {
  max-height: 500px;
  padding: 0 24px 20px;
}

/* ====================================================
   FROSTED GLASS FOOTER
   ==================================================== */
.app-footer-squap {
  background: rgba(8, 10, 16, 0.88);
  backdrop-filter: blur(28px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 60px 0 35px;
  position: relative;
  z-index: 10;
}
.footer-dev-squad-card {
  position: relative;
  background: linear-gradient(135deg, rgba(54, 80, 253, 0.12) 0%, rgba(18, 22, 34, 0.85) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(54, 80, 253, 0.28);
  border-radius: var(--radius-2xl);
  padding: 22px 28px;
  max-width: 860px;
  margin: 0 auto 40px;
  overflow: hidden;
}
.footer-dev-squad-card.right-aligned-compact .dev-squad-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: right;
}
.footer-dev-squad-card.right-aligned-compact .dev-squad-avatar-box {
  width: 56px; height: 56px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.squad-avatar-white {
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.75));
}
.squad-avatar-white strobi-avatar { width: 52px !important; height: 52px !important; }
.footer-dev-squad-card.right-aligned-compact .dev-squad-text { flex: 1; }
.footer-dev-squad-card.right-aligned-compact .dev-squad-text h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}
.footer-dev-squad-card.right-aligned-compact .dev-squad-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.dev-squad-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(54, 80, 253, 0.22), transparent 70%);
  pointer-events: none;
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 45px;
}
.footer-grid-col.brand-col .footer-brand-title {
  font-size: 1.45rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 10px;
}
.footer-brand-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 320px;
}
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.social-icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
  will-change: transform;
}
.social-icon-btn svg { display: block; transition: transform 0.24s ease; will-change: transform; }
.social-icon-btn:hover { transform: translateY(-2px); }
.social-icon-btn:hover svg { transform: scale(1.05); }
.social-icon-btn.is-instagram:hover { background: rgba(225, 48, 108, 0.18); border-color: rgba(225, 48, 108, 0.65); box-shadow: 0 6px 16px rgba(225, 48, 108, 0.35); }
.social-icon-btn.is-telegram:hover { background: rgba(34, 158, 217, 0.18); border-color: rgba(34, 158, 217, 0.65); box-shadow: 0 6px 16px rgba(34, 158, 217, 0.35); }
.social-icon-btn.is-x:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.55); box-shadow: 0 6px 16px rgba(255, 255, 255, 0.25); }
.social-icon-btn.is-bale:hover { background: rgba(41, 197, 121, 0.18); border-color: rgba(41, 197, 121, 0.65); box-shadow: 0 6px 16px rgba(41, 197, 121, 0.35); }
.social-icon-btn.is-linkedin:hover { background: rgba(10, 102, 194, 0.18); border-color: rgba(10, 102, 194, 0.65); box-shadow: 0 6px 16px rgba(10, 102, 194, 0.35); }

.footer-col-heading {
  font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 16px; position: relative; padding-bottom: 8px;
}
.footer-col-heading::after {
  content: ""; position: absolute; bottom: 0; right: 0; width: 22px; height: 2px; background: #3650fd; border-radius: 2px;
}
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s ease;
}
.footer-links-list a i { width: 14px; height: 14px; color: #7c9dff; opacity: 0.75; }
.footer-links-list a:hover { color: #fff; transform: translateX(-4px); }
.footer-links-list a:hover i { color: #38bdf8; opacity: 1; }

.footer-bottom-bar {
  display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.82rem; color: var(--text-dim); flex-wrap: wrap; gap: 14px;
}
.footer-bottom-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.25); padding: 4px 12px; border-radius: var(--radius-pill); color: #34d399; font-size: 0.78rem; font-weight: 700;
}
.pulse-dot-green { width: 7px; height: 7px; border-radius: 50%; background: #10b981; box-shadow: 0 0 8px #10b981; }

/* ====================================================
   RESPONSIVE: SLIM 2x2 GRID FOR MOBILE & TABLETS
   ==================================================== */
@media (max-width: 1024px) {
  .pricing-tiers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .tier-card-squap.featured {
    transform: none;
  }
  .ticket-callout-content {
    flex-direction: column;
    text-align: right;
    align-items: flex-start;
  }
  .btn-ticket-cta {
    width: 100%;
  }
  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }

  /* Header */
  .app-header-squap {
    top: 8px;
    margin-bottom: 12px;
  }
  .header-content-row {
    padding: 6px 14px;
    min-height: 48px;
  }
  .brand-name-squap {
    font-size: 1.2rem;
  }
  .btn-header-login {
    padding: 6px 12px;
    font-size: 0.78rem;
    gap: 5px;
  }
  .btn-header-login i {
    width: 13px;
    height: 13px;
  }
  .nav-links-squap {
    display: none;
  }

  /* Hero */
  .plans-hero-section {
    padding: 16px 0 25px;
  }
  .plans-hero-badge {
    font-size: 0.72rem;
    padding: 4px 12px;
    margin-bottom: 12px;
    max-width: 100%;
  }
  .plans-strobi-icon {
    width: 20px;
    height: 20px;
  }
  .plans-strobi-icon strobi-avatar {
    width: 20px !important;
    height: 20px !important;
  }
  .plans-headline {
    font-size: 1.55rem;
    line-height: 1.35;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
  }

  /* Duration Switcher */
  .billing-period-pill-wrap {
    margin-bottom: 22px;
  }
  .billing-period-pill {
    width: 100%;
    max-width: 290px;
    padding: 3px;
    gap: 3px;
  }
  .period-btn {
    flex: 1;
    padding: 7px 4px;
    font-size: 0.8rem;
    justify-content: center;
  }

  /* ════════════════════════════════════════════════════
     2x2 SLIM BENTO GRID (دوتا کنار هم، دوتای دیگه زیرشون)
     ════════════════════════════════════════════════════ */
  .pricing-tiers-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 25px !important;
  }

  .tier-card-squap {
    padding: 16px 12px 14px !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6) !important;
  }

  .tier-card-squap.featured {
    transform: none !important;
    border: 1.5px solid #3650fd !important;
  }
  .tier-card-squap.featured:hover {
    transform: translateY(-3px) !important;
  }

  .tier-popular-tag {
    font-size: 0.62rem;
    padding: 2px 8px;
    top: -10px;
    gap: 4px;
  }
  .tier-popular-tag i { width: 10px; height: 10px; }

  .tier-header-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .tier-header-icon-box i { width: 16px; height: 16px; }

  .tier-name {
    font-size: 0.95rem;
    margin-bottom: 2px;
  }
  .tier-desc {
    font-size: 0.68rem;
    line-height: 1.35;
    min-height: 32px;
    margin-bottom: 2px;
  }

  .tier-price-box {
    margin: 8px 0 6px;
    min-height: 52px;
  }
  .price-old-wrap {
    gap: 4px;
    margin-bottom: 1px;
    flex-wrap: wrap;
  }
  .price-old-val {
    font-size: 0.72rem;
  }
  .price-discount-tag {
    font-size: 0.6rem;
    padding: 1px 5px;
  }
  .tier-price-main {
    gap: 4px;
  }
  .price-val {
    font-size: 1.38rem;
  }
  .price-unit {
    font-size: 0.68rem;
  }
  .tier-sub-period {
    font-size: 0.64rem;
    margin-top: 1px;
  }

  .tier-divider {
    margin: 6px 0 8px;
  }

  .tier-specs-list {
    gap: 6px;
    margin-bottom: 12px;
  }
  .tier-specs-list li {
    font-size: 0.68rem;
    gap: 5px;
    line-height: 1.35;
  }
  .tier-specs-list li i {
    width: 12px;
    height: 12px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .btn-tier-action {
    padding: 8px 6px !important;
    font-size: 0.76rem !important;
    min-height: 36px;
    border-radius: var(--radius-pill);
    gap: 4px;
  }
  .btn-tier-action i {
    width: 13px;
    height: 13px;
  }

  /* Enterprise Callout */
  .enterprise-ticket-callout {
    padding: 18px 14px;
    border-radius: 18px;
    margin-bottom: 20px;
  }
  .ticket-callout-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .ticket-icon-box {
    width: 40px;
    height: 40px;
  }
  .ticket-text-box h3 {
    font-size: 0.98rem;
    margin-bottom: 3px;
  }
  .ticket-text-box p {
    font-size: 0.78rem;
    line-height: 1.6;
  }
  .btn-ticket-cta {
    width: 100%;
    padding: 10px 14px !important;
    font-size: 0.82rem !important;
    min-height: 40px;
  }

  /* Trust Bar (2x2 Grid) */
  .pricing-trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }
  .trust-item {
    font-size: 0.72rem;
    gap: 5px;
    justify-content: flex-start;
  }
  .trust-item i {
    width: 14px;
    height: 14px;
  }

  /* Comparison Section & Table */
  .section-squap-block {
    padding: 40px 0 35px;
  }
  .section-heading-squap {
    margin-bottom: 22px;
  }
  .section-heading-squap h2 {
    font-size: 1.45rem;
    line-height: 1.35;
  }
  .section-heading-squap p {
    font-size: 0.82rem;
  }
  .table-glass-container {
    border-radius: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .plans-compare-table {
    min-width: 500px;
    font-size: 0.78rem;
  }
  .plans-compare-table th {
    padding: 12px 6px;
    font-size: 0.78rem;
  }
  .plans-compare-table td {
    padding: 10px 6px;
  }
  .plans-compare-table td.feature-title {
    font-size: 0.78rem;
    gap: 5px;
  }
  .plans-compare-table td.feature-title i {
    width: 13px;
    height: 13px;
  }

  /* FAQ */
  .faq-accordion-wrap {
    gap: 8px;
  }
  .faq-item-squap {
    border-radius: 14px;
  }
  .faq-question-row {
    padding: 14px 16px;
  }
  .faq-question-row h4 {
    font-size: 0.86rem;
    line-height: 1.45;
  }
  .faq-arrow {
    width: 14px;
    height: 14px;
  }
  .faq-item-squap.is-open .faq-answer-content {
    padding: 0 16px 14px;
    font-size: 0.8rem;
    line-height: 1.6;
  }

  /* Footer */
  .app-footer-squap {
    padding: 35px 0 25px;
  }
  .footer-dev-squad-card {
    padding: 14px 14px;
    border-radius: 16px;
    margin-bottom: 22px;
  }
  .footer-dev-squad-card.right-aligned-compact .dev-squad-inner {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-align: right;
  }
  .footer-dev-squad-card.right-aligned-compact .dev-squad-avatar-box {
    width: 42px;
    height: 42px;
  }
  .squad-avatar-white strobi-avatar {
    width: 38px !important;
    height: 38px !important;
  }
  .footer-dev-squad-card.right-aligned-compact .dev-squad-text h3 {
    font-size: 0.92rem;
    margin-bottom: 2px;
  }
  .footer-dev-squad-card.right-aligned-compact .dev-squad-text p {
    font-size: 0.76rem;
    line-height: 1.55;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 22px;
    text-align: right;
  }
  .footer-grid-col.brand-col {
    text-align: right;
  }
  .footer-brand-desc {
    margin: 0 0 10px 0;
    max-width: 100%;
    font-size: 0.78rem;
  }
  .footer-social-links {
    justify-content: flex-start;
  }
  .footer-col-heading {
    font-size: 0.86rem;
    margin-bottom: 8px;
  }
  .footer-links-list a {
    font-size: 0.78rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding-top: 14px;
    font-size: 0.74rem;
  }
  .footer-bottom-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
}
