/* ==========================================================================
   MUSLIM - DESIGN SYSTEM & MAIN STYLESHEET
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --emerald-900: #073B32;
  --emerald-800: #0B4E41;
  --emerald-700: #0E6655;
  --emerald-600: #16A085;
  --emerald-500: #1ABC9C;
  --emerald-400: #48C9B0;
  --emerald-100: #D1F2EB;
  --emerald-50: #E8F8F5;

  --gold-700: #B7950B;
  --gold-600: #D4AC0D;
  --gold-500: #F1C40F;
  --gold-400: #F4D03F;
  --gold-100: #FEF9E7;

  --slate-900: #1A252F;
  --slate-800: #2C3E50;
  --slate-700: #34495E;
  --slate-600: #415B76;
  --slate-500: #5D6D7E;
  --slate-400: #7F8C8D;
  --slate-200: #BDC3C7;
  --slate-100: #EAEDED;
  --slate-50: #F8F9F9;

  --red-600: #C0392B;
  --red-500: #E74C3C;
  --red-100: #FADBD8;
  --red-50: #FDEDEC;

  --blue-600: #1F618D;
  --blue-500: #3498DB;
  --blue-100: #D4E6F1;
  --blue-50: #EBF5FB;

  --bg-app: #F4F7F7;
  --bg-card: #FFFFFF;
  --border-light: rgba(44, 62, 80, 0.09);
  --border-medium: rgba(44, 62, 80, 0.16);

  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Hanken Grotesk', 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-arabic: 'Amiri', 'Geeza Pro', 'Traditional Arabic', serif;

  --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.05);
  --shadow-md: 0 4px 16px rgba(44, 62, 80, 0.08);
  --shadow-lg: 0 12px 32px rgba(44, 62, 80, 0.12);
  --shadow-xl: 0 24px 64px rgba(11, 60, 50, 0.22);
  --shadow-phone: 0 28px 70px rgba(11, 60, 50, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --nav-height: 76px;
  --container-max: 1280px;
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background-color: var(--bg-app);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* RTL Support for Arabic */
html[dir="rtl"] body {
  font-family: var(--font-arabic), var(--font-sans);
}

html[dir="rtl"] .font-display {
  font-family: var(--font-arabic), var(--font-display);
}

a {
  color: var(--emerald-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--emerald-600);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img, svg {
  vertical-align: middle;
  display: inline-block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}

/* --- Header & Navbar --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.brand-logo svg {
  height: 28px;
  width: auto;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 20px;
  list-style: none;
}

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

.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate-500);
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  padding: 6px 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--slate-900);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  border-radius: 99px;
  background: var(--emerald-600);
}

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

/* Language Selector Dropdown */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  background: var(--slate-50);
  border: 1px solid var(--border-medium);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: #FFFFFF;
  border-color: var(--emerald-600);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  min-width: 150px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 1010;
  animation: fadeIn 0.2s ease;
}

html[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

.lang-menu.open {
  display: flex;
}

.lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate-700);
  transition: background 0.15s ease;
  width: 100%;
  text-align: left;
}

html[dir="rtl"] .lang-item {
  text-align: right;
}

.lang-item:hover, .lang-item.active {
  background: var(--emerald-50);
  color: var(--emerald-700);
  font-weight: 600;
}

.btn-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-800);
  padding: 9px 16px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.btn-login:hover {
  background: var(--slate-100);
}

.btn-download-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  background: var(--emerald-600);
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(22, 160, 133, 0.28);
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-download-app:hover {
  background: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 160, 133, 0.4);
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  cursor: pointer;
}

@media (min-width: 1280px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: var(--slate-800);
  border-radius: 2px;
  transition: all 0.25s ease;
}

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

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

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

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: none;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin-bottom: 24px;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-800);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background-color: var(--emerald-600);
  background-image: url('../assets/hero-background.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 0;
  overflow: hidden;
  color: #FFFFFF;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(9, 52, 44, 0.88) 0%, rgba(9, 52, 44, 0.72) 48%, rgba(9, 52, 44, 0.45) 100%);
  pointer-events: none;
}

.hero-geo-ring-1 {
  position: absolute;
  top: -200px;
  right: -240px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.hero-geo-ring-2 {
  position: absolute;
  top: -100px;
  right: -400px;
  width: 960px;
  height: 960px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  align-items: end;
}

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

.hero-content {
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  align-self: flex-start;
  font-size: 13.5px;
  font-weight: 500;
  color: #FFFFFF;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #FFFFFF;
  max-width: 650px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 58px;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 64px;
  }
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  color: var(--slate-800);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.store-badge svg {
  flex-shrink: 0;
}

.store-badge-text {
  line-height: 1.15;
}

.store-badge-sub {
  font-size: 10.5px;
  color: var(--slate-500);
  font-weight: 500;
}

.store-badge-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.avatar-stack {
  display: flex;
}

.avatar-item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--emerald-600);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar-item:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

/* --- Interactive Phone Simulator --- */
.hero-phone-container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.phone-wrapper {
  width: 100%;
  max-width: 360px;
  background: var(--bg-app);
  border-radius: 40px 40px 0 0;
  box-shadow: var(--shadow-phone);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 640px;
  position: relative;
  border: 8px solid #FFFFFF;
  border-bottom: none;
  font-family: var(--font-sans);
  color: var(--slate-800);
}

.phone-notch-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 6px;
  background: var(--bg-app);
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-800);
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-view-container {
  flex: 1;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Phone Screen: Início (Home) */
.phone-screen {
  display: none;
  flex-direction: column;
  padding: 10px 18px 20px;
  gap: 12px;
  animation: phoneScreenSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
}

.phone-screen.active {
  display: flex;
}

.phone-user-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
}

.phone-user-info h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--slate-800);
}

.phone-user-info p {
  font-size: 11.5px;
  color: var(--slate-500);
}

.phone-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* Emergency Red Button */
.phone-emergency-btn {
  background: var(--red-500);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 14px rgba(231, 76, 60, 0.3);
}

.phone-emergency-btn:hover {
  background: var(--red-600);
  transform: scale(1.02);
}

.emergency-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency-btn-text h5 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.emergency-btn-text p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
}

/* Phone Quick Action Grid */
.phone-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.quick-action-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.quick-action-card:hover {
  transform: translateY(-2px);
  background: var(--emerald-50);
}

.quick-action-card.primary {
  background: var(--slate-800);
  color: #FFFFFF;
}

.quick-action-card span {
  font-size: 10.5px;
  font-weight: 600;
}

/* Phone Request List */
.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.phone-section-title h5 {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--slate-800);
}

.phone-section-title button {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--emerald-700);
}

.phone-request-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.phone-request-card:hover {
  transform: translateX(3px);
  background: #FCFDFD;
}

.req-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.req-info {
  flex: 1;
  min-width: 0;
}

.req-info h6 {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-800);
}

.req-info p {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate-500);
}

.req-status-pill {
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 9.5px;
  font-weight: 600;
  flex-shrink: 0;
}

.pill-active {
  background: rgba(22, 160, 133, 0.14);
  color: var(--emerald-700);
}

.pill-resolved {
  background: rgba(44, 62, 80, 0.08);
  color: var(--slate-500);
}

/* Phone Bottom Nav Bar */
.phone-bottom-nav {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 8px 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.phone-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 4px 8px;
}

.phone-nav-btn.active {
  color: var(--emerald-600);
  font-weight: 700;
}

.phone-nav-btn svg {
  stroke-width: 2;
}

/* Phone Screen: Chat Preview */
.phone-chat-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.chat-bubble {
  max-width: 84%;
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.45;
  position: relative;
}

.chat-bubble.user {
  align-self: flex-end;
  background: var(--emerald-600);
  color: #FFFFFF;
  border-radius: 14px 14px 2px 14px;
}

.chat-bubble.leader {
  align-self: flex-start;
  background: #FFFFFF;
  color: var(--slate-800);
  border-radius: 14px 14px 14px 2px;
  box-shadow: var(--shadow-sm);
}

/* Phone Screen: Emergency Drawer Simulator */
.phone-emergency-modal {
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 80, 0.85);
  backdrop-filter: blur(8px);
  z-index: 50;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  animation: fadeIn 0.2s ease;
}

.phone-emergency-modal.open {
  display: flex;
}

.emergency-sheet {
  background: #FFFFFF;
  border-radius: 24px 24px 0 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* --- Live Stats Bar --- */
.stats-bar-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 38px;
  }
}

.stat-label {
  font-size: 13.5px;
  color: var(--slate-500);
  line-height: 1.4;
}

/* --- "O Que Muda" - Comparison Section --- */
.section-pad {
  padding: 80px 0;
}

@media (min-width: 992px) {
  .section-pad {
    padding: 100px 0;
  }
}

.section-header-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 992px) {
  .section-header-split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
  }
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--emerald-700);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--slate-800);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

.section-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--slate-500);
  max-width: 440px;
}

.cards-3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.feature-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h4 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--slate-800);
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate-500);
}

/* --- "Como Funciona" - 3 Steps Interactive --- */
.steps-interactive-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .steps-interactive-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.step-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--emerald-600);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
}

.step-box-header h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--slate-800);
}

.step-box p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-500);
}

.step-sandbox {
  min-height: 220px;
  border-radius: var(--radius-md);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px;
  margin-top: auto;
}

/* Sandbox Step 1 */
.sandbox-lang {
  background: var(--emerald-600);
  gap: 14px;
}

.lang-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lang-pill-btn {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.lang-pill-btn.active {
  background: #FFFFFF;
  color: var(--emerald-700);
}

.lang-pill-btn.outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #FFFFFF;
}

.lang-pill-btn.outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Sandbox Step 2 */
.sandbox-request {
  background: var(--bg-app);
  border: 1px solid var(--border-medium);
  gap: 10px;
  align-items: stretch;
}

.category-toggles {
  display: flex;
  gap: 8px;
}

.cat-btn {
  flex: 1;
  background: #FFFFFF;
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cat-btn.active {
  border-color: var(--emerald-600);
  color: var(--emerald-700);
  box-shadow: 0 4px 10px rgba(22, 160, 133, 0.16);
}

.demo-request-input {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 12px;
  color: var(--slate-700);
  line-height: 1.4;
  border: 1px solid var(--border-light);
}

/* Sandbox Step 3 */
.sandbox-chat {
  background: var(--bg-app);
  border: 1px solid var(--border-medium);
  gap: 8px;
  align-items: stretch;
}

/* --- Interactive Mosque & Hubs Map Explorer --- */
.map-explorer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .map-explorer-grid {
    grid-template-columns: 1.25fr 1fr;
  }
}

.map-visual-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.map-filter-bar {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 10;
}

.map-filter-chip {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.map-filter-chip.active {
  background: var(--emerald-600);
  color: #FFFFFF;
}

.map-filter-chip.inactive {
  background: #FFFFFF;
  color: var(--slate-700);
}

.map-filter-chip.inactive:hover {
  background: var(--slate-100);
}

.map-svg-canvas {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: repeating-linear-gradient(135deg, #E6EDEC 0 16px, #DCE5E4 16px 32px);
  position: relative;
}

.map-legend-box {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-700);
  z-index: 10;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Map Interactive Pins */
.map-pin {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) translate(-50%, -50%);
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  z-index: 5;
}

.map-pin:hover, .map-pin.active {
  transform: rotate(-45deg) translate(-50%, -50%) scale(1.3);
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.map-pin.mesquita {
  background: var(--gold-500);
}

.map-pin.ponto-apoio {
  background: var(--emerald-600);
}

.map-pin.user-location {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--red-500);
  box-shadow: 0 0 0 8px rgba(231, 76, 60, 0.22);
  border: 3px solid #FFFFFF;
}

/* Pins vetoriais desenhados dentro do SVG do mapa (map.js) */
.map-pin-group {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-pin-group:hover, .map-pin-group.selected {
  transform: scale(1.18);
}

.pin-tooltip {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.map-pin-group:hover .pin-tooltip, .map-pin-group.selected .pin-tooltip {
  opacity: 1;
}

/* Map Sidebar List */
.map-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-search-wrapper {
  position: relative;
}

.map-search-input {
  width: 100%;
  padding: 13px 18px 13px 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  background: #FFFFFF;
  font-size: 14px;
  color: var(--slate-800);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

html[dir="rtl"] .map-search-input {
  padding: 13px 44px 13px 18px;
}

.map-search-input:focus {
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.16);
}

.map-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  pointer-events: none;
}

html[dir="rtl"] .map-search-icon {
  left: auto;
  right: 14px;
}

.units-scroll-list {
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
}

.unit-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 14px 16px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

.unit-card:hover, .unit-card.active {
  border-color: var(--emerald-600);
  background: var(--emerald-50);
  box-shadow: var(--shadow-md);
}

.unit-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.unit-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.unit-info-col {
  flex: 1;
  min-width: 0;
}

.unit-type-pill {
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
}

.unit-distance {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
}

.unit-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--slate-800);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.unit-address {
  font-size: 12px;
  color: var(--slate-500);
  margin: 8px 0 0;
  padding-left: 50px;
}

.unit-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
  padding-left: 50px;
}

.unit-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

html[dir="rtl"] .unit-address, html[dir="rtl"] .unit-tags-row {
  padding-left: 0;
  padding-right: 50px;
}

.unit-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.unit-btn-outline {
  background: var(--emerald-50);
  color: var(--emerald-700);
  border-color: rgba(22, 160, 133, 0.2);
}

.unit-btn-outline:hover {
  background: var(--emerald-100);
}

.unit-btn-solid {
  background: var(--slate-800);
  color: #FFFFFF;
}

.unit-btn-solid:hover {
  background: var(--slate-900);
}

.unit-open-badge {
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
}

/* --- Radical Privacy Section --- */
.privacy-section {
  background: var(--slate-800);
  color: #FFFFFF;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .privacy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-tag {
  color: var(--gold-500);
}

.privacy-content h3 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #FFFFFF;
}

.privacy-content p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.privacy-cards-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy-card-row {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.privacy-card-row:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(6px);
}

html[dir="rtl"] .privacy-card-row:hover {
  transform: translateX(-6px);
}

.privacy-row-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy-row-text h5 {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.privacy-row-text p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

/* --- Target Audiences Hub (Lideranças & Empresas) --- */
.audiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

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

.audience-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.audience-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--slate-800);
}

.audience-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-500);
}

.audience-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}

.audience-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-700);
}

.btn-audience-action {
  align-self: flex-start;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid var(--border-medium);
  background: #FFFFFF;
  color: var(--slate-800);
}

.btn-audience-action:hover {
  background: var(--slate-800);
  color: #FFFFFF;
  border-color: var(--slate-800);
}

/* --- Community Stories / Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.story-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.story-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.story-badge-help {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--emerald-50);
  color: var(--emerald-700);
  font-size: 11.5px;
  font-weight: 600;
}

.story-quote {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
  color: var(--slate-800);
}

.story-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-meta h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--slate-800);
}

.author-meta p {
  font-size: 12px;
  color: var(--slate-500);
}

/* Audio Simulation Bar in Testimonial */
.audio-bar-sim {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-app);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.audio-bar-sim:hover {
  background: var(--emerald-50);
}

.audio-play-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--emerald-600);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* --- FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--emerald-100);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-800);
  text-align: left;
  cursor: pointer;
}

html[dir="rtl"] .faq-question {
  text-align: right;
}

.faq-chevron {
  transition: transform 0.25s ease;
  color: var(--emerald-600);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate-500);
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- Download CTA Section --- */
.download-section {
  background: var(--emerald-600);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.download-geo-ring {
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.download-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .download-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
  }
}

.download-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}

.download-content h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #FFFFFF;
}

.download-content p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.qr-code-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-xl);
  flex-shrink: 0;
}

.qr-code-canvas {
  width: 140px;
  height: 140px;
  background: #FFFFFF;
  position: relative;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-label {
  font-size: 12.5px;
  color: var(--slate-500);
  text-align: center;
  line-height: 1.4;
  max-width: 160px;
}

/* --- Site Footer --- */
.site-footer {
  background: var(--slate-800);
  color: #FFFFFF;
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 36px;
  }
}

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

.footer-brand-col p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col h6 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.footer-nav-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-nav-col a:hover {
  color: var(--emerald-400);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

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

.copyright-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-lang-pills {
  display: flex;
  gap: 8px;
}

.footer-lang-pill {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-lang-pill:hover, .footer-lang-pill.active {
  background: var(--emerald-600);
  border-color: var(--emerald-600);
  color: #FFFFFF;
}

/* --- Modals System --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

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

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--slate-800);
}

.modal-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-500);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}

.modal-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  font-size: 14px;
  color: var(--slate-800);
  outline: none;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.15);
}

.btn-primary-action {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--emerald-600);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(22, 160, 133, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary-action:hover {
  background: var(--emerald-700);
  transform: translateY(-2px);
}

/* --- Floating Toast Notification --- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

html[dir="rtl"] .toast-container {
  right: auto;
  left: 24px;
}

.toast-item {
  pointer-events: auto;
  width: 340px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  overflow: hidden;
  animation: fadeInDown 0.3s ease;
}

.toast-color-bar {
  width: 6px;
  background: var(--emerald-600);
  flex-shrink: 0;
}

.toast-content {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.toast-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--slate-800);
}

.toast-desc {
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.4;
}

.toast-close {
  padding: 10px 12px;
  color: var(--slate-400);
  cursor: pointer;
  font-size: 13px;
}

.toast-close:hover {
  color: var(--slate-800);
}
