:root {
  --day-bg-body: #f5f6f8;
  --day-bg-main: #ffffff;
  --day-bg-header: #0f172a;
  --day-bg-card: #ffffff;
  --day-bg-card-alt: linear-gradient(145deg, #ffffff, #f1f5f9);
  --day-bg-section: #ffffff;
  --day-bg-section-glass: rgba(255, 255, 255, 0.85);
  --day-bg-input: #ffffff;
  --day-bg-hover: #f1f5f9;
  --day-bg-accent-light: #eff6ff;
  --day-bg-gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --day-border-color: #e0e6ef;
  --day-border-alt: #e2e8f0;

  --day-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --day-shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --day-shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --day-shadow-xl: 0 30px 60px rgba(15, 23, 42, 0.15);
  --day-shadow: var(--day-shadow-md);
  --day-shadow-hover: 0 25px 50px rgba(15, 23, 42, 0.1);
  --day-shadow-button: 0 10px 30px rgba(37, 99, 235, 0.4);

  --day-font-primary: "Segoe UI", Arial, sans-serif;
  --day-text-primary: #1a1a1a;
  --day-text-secondary: #0f172a;
  --day-text-muted: #64748b;
  --day-text-description: #475569;
  --day-text-accent: #2563eb;
  --day-text-header-nav: #ffffff;

  --night-bg-body: #0f172a;
  --night-bg-main: #0f172a;
  --night-bg-header: #1e293b;
  --night-bg-card: #1e293b;
  --night-bg-section: transparent;
  --night-bg-hover: #334155;
  --night-bg-gradient-hero: radial-gradient(circle at top left, #1e293b, #0f172a);
  --night-border-color: #334155;
  --night-border-alt: #475569;
  --night-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --night-shadow: var(--night-shadow-md);

  --night-text-primary: #e2e8f0;
  --night-text-secondary: #f1f5f9;
  --night-text-muted: #cbd5e1;
  --night-text-accent: #60a5fa;

  --day-bg-featured: #ffffff;
  --day-text-featured: #0f172a;
  --day-featured-border: #2563eb;

  --night-bg-featured: #1e293b;
  --night-text-featured: #ffffff;
  --night-bg-cta-section: #020617;
  --night-bg-cta-container: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  --divider-gradient: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
  --glint-color: rgba(37, 99, 235, 0.8);

  --color-success: #10b981;
  --primary-blue: #2563eb;
  --dark-navy: #0f172a;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);

  --code-color: #2563eb;
  --code-bg: rgba(37, 99, 235, 0.05);
  --code-border: #e2e8f0;
  --night-code-color: #60a5fa;
  --night-code-bg: rgba(30, 41, 59, 0.7);
  --night-code-border: #334155;

  --search-counter-bg: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --toast-success-bg: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

html {
  scrollbar-gutter: stable;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  padding: 0;
  transition: background-color 0.4s ease, color 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--day-font-primary);
  color: var(--day-text-primary);
  background-color: var(--day-bg-body);
}

.no-transition * {
  transition: none !important;
}

.home-main {
  flex-grow: 1;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--day-bg-main);
}

.dark-mode .home-main {
  background-color: var(--night-bg-main);
}

.header {
  position: sticky;
  top: 0;
  background: #0f172a;
  padding: 0 24px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  height: 80px;
  gap: 20px;
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.header-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: white;
}

.nav-link.active {
  color: white;
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-blue);
  border-radius: 1px;
}

::-webkit-scrollbar {
  width: 12px;
  background: #f1f5f9;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 6px;
  border: 3px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.dark-mode ::-webkit-scrollbar {
  background: #1e293b;
}

.dark-mode ::-webkit-scrollbar-track {
  background: #1e293b;
}

.dark-mode ::-webkit-scrollbar-thumb {
  background: #475569;
  border: 3px solid #1e293b;
}

::selection {
  background: var(--primary-blue);
  color: white;
}

.dark-mode ::selection {
  background: var(--night-text-accent);
  color: var(--night-bg-body);
}

.header-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.dark-mode-toggle {
  background: none;
  border: 2px solid #2563eb;
  color: #2563eb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-size: 18px;
  margin: 0 10px;
}

.dark-mode-toggle:hover {
  background: #2563eb;
  color: white;
  transform: rotate(20deg) scale(1.1);
}

.dark-mode .dark-mode-toggle {
  border-color: #60a5fa;
  color: #60a5fa;
}

.dark-mode .dark-mode-toggle:hover {
  background: #60a5fa;
  color: #0f172a;
}

.Murqmn_Logo {
  height: 55px;
  width: auto;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease;
}

.Murqmn_Logo:hover {
  transform: scale(1.05);
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.search-box input {
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid #7f81e4;
  width: 240px;
  font-size: 14px;
  outline: none;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  background: white;
}

.search-box input:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
  border-color: var(--primary-blue);
}

#clearSearch {
  padding: 8px 16px;
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
  height: 38px;
}

#clearSearch:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.search-counter {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--search-counter-bg);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  animation: slideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--toast-success-bg);
  color: white;
  padding: 15px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

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

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

.unit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 16px;
  padding: 32px;
}

.unit-list section {
  background: #ffffff;
  border: 1px solid #e0e6ef;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: scale(1) translateY(0);
  transform-origin: top center;
}

.unit-list section:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.95);
}

section h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  letter-spacing: 0.05em;
  cursor: default;
  user-select: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  padding: 10px 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
}

td {
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
  vertical-align: middle;
  text-align: left;
}

td:nth-child(2) {
  width: 70%;
  white-space: normal;
  line-height: 1.6;
  color: #0f172a;
  font-size: 14px;
  overflow-wrap: break-word;
}

tr:hover {
  background-color: #f1f5f9;
}

tr:last-child td {
  border-bottom: none;
}

.code {
  background: #eff6ff;
  color: #2563eb;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: 'Consolas', 'Monaco', monospace;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid #dbeafe;
  transition: all 0.2s ease;
  margin-top: 10px;
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

tr:hover .code {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.value {
  font-weight: 600;
  color: #0f172a;
  font-size: 14px;
  text-align: right;
  position: relative;
}

.copy-btn {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
}

.value:hover .copy-btn {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.highlight {
  background-color: yellow;
  color: #0f172a;
  font-weight: bold;
}

.table-wrapper {
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-view {
  text-align: center;
  padding: 15px 0 5px;
  color: var(--primary-blue);
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.toggle-view:hover {
  color: rgb(59, 130, 246) !important;
  transform: scale(1.1);
}

section.hidden-anim {
  max-height: 0;
  opacity: 0;
  transform: scale(0.95);
  margin: 0;
  padding: 0;
  border: none;
  pointer-events: none;
  overflow: hidden;
}

section.hidden {
  display: none;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: transparent;
  color: var(--dark-navy);
  min-height: 85vh;
  gap: 60px;
  scroll-snap-align: start;
  flex-direction: row;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.03)" width="1" height="1" x="50" y="50"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  flex: 1.2;
  z-index: 2;
  animation: fadeInRight 1s ease-out;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a 30%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 22px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-chrome {
  background: var(--primary-blue);
  color: white;
  box-shadow: var(--day-shadow-button);
}

.btn-chrome:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.5);
}

.btn-edge {
  background: #ffffff;
  color: var(--dark-navy);
  border: 1px solid #e2e8f0;
  backdrop-filter: blur(12px);
}

.btn-edge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-image-container {
  flex: 0.8;
  display: flex;
  justify-content: center;
  z-index: 2;
  animation: fadeInLeft 1s ease-out;
}

.hero-floating-img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  animation: float 6s ease-in-out infinite;
}

.features-summary {
  padding: 120px 10%;
  background: transparent;
  position: relative;
  scroll-snap-align: start;
}

.features-summary::before,
.pricing-section::before,
.cta-section::before,
.vision-section::before,
.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: var(--divider-gradient);
  opacity: 0.8;
  z-index: 0;
}

.features-summary::after,
.pricing-section::after,
.cta-section::after,
.vision-section::after,
.team-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glint-color), transparent);
  animation: glint-expand 4s infinite ease-in-out;
  transform: translateX(-50%);
  z-index: 1;
}

@keyframes glint-expand {
  0% {
    width: 0;
    opacity: 0;
  }

  25% {
    width: 0;
    opacity: 1;
  }

  100% {
    width: 100%;
    opacity: 0;
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  z-index: 10;
  opacity: 0;
}

.feature-img-container:hover .slider-btn {
  opacity: 1;
}

.slider-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

.slider-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  padding: 5px 12px;
  border-radius: 20px;
}

.slider-indicator {
  width: 25px;
  height: 5px;
  background: white;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease, width 0.3s ease, background 0.3s ease;
}

.slider-indicator.active {
  opacity: 1;
  width: 40px;
  background: var(--primary-blue);
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 70px;
  letter-spacing: -0.01em;
}

.dark-mode .section-title {
  color: white;
}

.section-title span {
  color: var(--primary-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-card {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  padding: 50px 40px;
  border-radius: 40px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-20px) scale(1.02);
  background: white;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
  border-color: var(--primary-blue);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin-bottom: 36px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  z-index: 1;
}

.feature-icon-wrapper i {
  background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary-blue);
  transform: scale(1.1) rotate(12deg);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.feature-card:hover .feature-icon-wrapper i {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-size: 26px;
  color: var(--dark-navy);
  margin-bottom: 20px;
  font-weight: 700;
}

.feature-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 18px;
}

.float-icon {
  animation: floatingIcon 3s ease-in-out infinite;
}

.pricing-section {
  padding: 100px 5%;
  background: transparent;
  scroll-snap-align: start;
  direction: rtl;
  position: relative;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 40px 30px;
  width: 380px;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--day-shadow-hover);
  border-color: #2563eb;
}

.pricing-card.featured {
  background: var(--day-bg-featured);
  color: var(--day-text-featured);
  border: 2px solid var(--day-featured-border);
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
}

.featured-border {
  border: 2px solid #2563eb;
}

.pricing-card.featured .plan-name,
.pricing-card.featured .price,
.pricing-card.featured .plan-features li {
  color: var(--day-text-featured);
}

.pricing-card.featured .currency {
  color: #94a3b8;
}

.pricing-card.featured .plan-features li.disabled {
  color: #475569;
}

.plan-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #10b981;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.plan-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 20px;
}

.pricing-card.featured .plan-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-name {
  font-size: 18px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card.featured .plan-name {
  color: var(--primary-blue);
}

.price {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-annual {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
}

.currency {
  font-size: 18px;
  color: #64748b;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
  flex-grow: 1;
}

.plan-features li {
  padding: 12px 0;
  font-size: 15px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card.featured .plan-features li {
  color: var(--day-text-muted);
}

.plan-features li i {
  font-size: 18px;
}

.plan-features li i.fa-check-circle {
  color: #10b981;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin-top: auto;
}

.btn-plan:not(.btn-featured) {
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.btn-plan:not(.btn-featured):hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.btn-plan.btn-featured {
  background: #2563eb;
  color: white;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-plan.btn-featured:hover {
  background: #1d4ed8;
  transform: scale(1.02);
  box-shadow: 0 15px 25px rgba(37, 99, 235, 0.3);
}

.btn-featured {
  background: var(--primary-blue);
  color: white;
}

.btn-featured:hover {
  background: #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.cta-section {
  padding: 100px 10%;
  background: transparent;
  scroll-snap-align: start;
  position: relative;
}

.cta-container {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1d4ed8 100%);
  border-radius: 48px;
  padding: 80px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-container h2 {
  color: #ffffff;
}

.dark-mode .cta-container h2 {
  color: #60a5fa;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.dark-mode .cta-container p {
  color: #93c5fd;
}

.cta-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: rotate 20s linear infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .cta-container::before {
    animation: none;
  }
}

.cta-container h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-container p {
  font-size: 22px;
  margin-bottom: 48px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: inline-block;
  background: white;
  color: var(--primary-blue);
  padding: 20px 60px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.btn-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dark-mode body {
  background: #0f172a !important;
  color: #e2e8f0;
}

.dark-mode .header {
  background: #1e293b;
  border-bottom-color: #334155;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark-mode .Murqmn_Logo {
  filter: brightness(1.2);
}

.dark-mode .nav-link {
  color: #cbd5e1;
}

.dark-mode .nav-link:hover,
.dark-mode .nav-link.active {
  color: #60a5fa;
  background: transparent;
}

.dark-mode .dark-mode-toggle {
  border-color: #60a5fa;
  color: #60a5fa;
}

.dark-mode .dark-mode-toggle:hover {
  background: #60a5fa;
  color: #0f172a;
}

.dark-mode .hero-section {
  background: transparent;
  color: white;
}

.dark-mode {
  --divider-gradient: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
  --glint-color: rgba(96, 165, 250, 0.9);
}

.dark-mode .hero-title {
  background: linear-gradient(90deg, #004cff 50%, #315cb7 100%);
  background-clip: text;
}

.dark-mode .hero-subtitle {
  color: #94a3b8;
}

.dark-mode .btn-edge {
  background: var(--glass-bg);
  color: white;
  border: 1px solid var(--glass-border);
}

.dark-mode .section-title {
  color: #f8fafc;
}

.dark-mode .features-summary {
  background: transparent;
}

.dark-mode .feature-card {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border-color: rgba(51, 65, 85, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dark-mode .feature-card:hover {
  background: #1e293b;
  border-color: var(--primary-blue);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.dark-mode .feature-icon-wrapper {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .feature-icon-wrapper i {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dark-mode .feature-card:hover .feature-icon-wrapper i {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dark-mode .feature-card h3 {
  color: #f8fafc;
}

.dark-mode .feature-card p {
  color: #94a3b8;
}

.dark-mode .pricing-section {
  background: transparent;
}

.dark-mode .pricing-card:not(.featured) {
  background: #0f172a;
  border-color: #1e293b;
}

.dark-mode .pricing-card:not(.featured) .plan-name {
  color: #38bdf8;
}

.dark-mode .pricing-card:not(.featured) .price {
  color: white;
}

.dark-mode .pricing-card:not(.featured) .price-annual {
  color: #94a3b8;
}

.dark-mode .pricing-card:not(.featured) .plan-header {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dark-mode .pricing-card .plan-features li {
  color: #cbd5e1;
}

.dark-mode .btn-plan:not(.btn-featured) {
  background: #1e293b;
  color: white;
  border-color: #334155;
}

.dark-mode .btn-plan:not(.btn-featured):hover {
  background: #334155;
  border-color: #475569;
}

.dark-mode .pricing-card.featured {
  background: var(--night-bg-featured);
  color: var(--night-text-featured);
  border-color: var(--primary-blue);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.dark-mode .pricing-card.featured .plan-name,
.dark-mode .pricing-card.featured .price,
.dark-mode .pricing-card.featured .plan-features li {
  color: var(--night-text-featured);
}

.dark-mode .pricing-card.featured .plan-name {
  color: #38bdf8;
}

.dark-mode .pricing-card.featured .plan-features li {
  color: #cbd5e1;
}

.dark-mode .cta-section {
  background: transparent;
}

.dark-mode .cta-container {
  background: radial-gradient(circle at top left, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dark-mode .social-footer {
  background: #1e293b !important;
  border-top: 1px solid #334155 !important;
}

.dark-mode .social-footer h3 {
  color: #f1f5f9;
}

.dark-mode .footer-links {
  background: transparent !important;
}

.dark-mode footer {
  background: #1e293b !important;
}

@keyframes float {

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

  50% {
    transform: translateY(-30px) rotate(2deg);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.dark-mode .intro-text {
  color: #cbd5e1;
}

.dark-mode .unit-list section {
  background: var(--night-bg-card);
  border-color: var(--night-border-color);
}

.dark-mode .unit-list section:hover {
  border-color: var(--night-text-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.dark-mode .unit-list h2 {
  color: white;
  border-right-color: var(--night-text-accent);
}

.dark-mode th {
  color: #94a3b8;
  border-bottom-color: #334155;
}

.dark-mode td {
  color: #cbd5e1;
  border-bottom-color: #334155;
}

.dark-mode .code {
  color: var(--night-text-accent);
  background: var(--night-code-bg);
}

.dark-mode .value {
  color: white;
}

.dark-mode .search-box input {
  background: #1e293b;
  border-color: #475569;
  color: white;
}

.dark-mode #clearSearch {
  background: #334155;
  color: white;
  border-color: #475569;
}

.dark-mode .feature-list li {
  background: #1e293b;
  border-color: #334155;
  color: #f1f5f9;
}

.dark-mode .feature-list li i {
  background: #334155;
  color: #60a5fa;
}

.dark-mode .outro-text {
  color: #94a3b8;
}

@keyframes floatingIcon {
  0% {
    transform: translateY(0);
  }

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

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

@media (max-width: 1100px) {
  .hero-title {
    font-size: 42px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-grid {
    gap: 30px;
  }

  .pricing-card {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 900px) {
  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 100px 5% 60px;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-container {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
    padding: 15px;
    gap: 15px;
  }

  .logo-link {
    order: 1;
    display: flex;
    align-items: center;
  }

  .dark-mode-toggle {
    order: 2;
    margin: 0;
  }

  .header-nav {
    order: 3;
    width: 100%;
  }

  .Murqmn_Logo {
    height: 40px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .nav-link {
    font-size: 14px;
  }

  main {
    padding: 16px;
  }

  .cta-container {
    padding: 60px 20px;
    border-radius: 32px;
  }

  .cta-container h2 {
    font-size: 32px;
  }

  .cta-container::before {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    opacity: 0.5;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    will-change: transform;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-container h2 {
    font-size: 28px;
  }

  .cta-container p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .btn-cta {
    padding: 15px 40px;
    font-size: 18px;
  }
}

.info-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  padding: 32px;
}

.about-extension {
  background: transparent;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.intro-text {
  font-size: 18px;
  color: #475569;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 15px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.feature-list li {
  background: var(--day-bg-main);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--day-border-alt);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1 / 1;
  color: var(--dark-navy);
  font-weight: 500;
  font-size: 11px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
  border-color: #bfdbfe;
}

.feature-list li i {
  color: var(--primary-blue);
  font-size: 18px;
  background: #eff6ff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 10px 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.feature-list li:hover i {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.1);
}

.outro-text {
  text-align: center;
  color: #64748b;
  margin-top: 30px;
  font-style: italic;
  font-size: 18px;
}

.feature-explanation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 30px;
}

.feature-explanation-card {
  scroll-margin-top: 100px;
  background: var(--day-bg-main);
  border-radius: 16px;
  border: 1px solid var(--day-border-alt);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.feature-explanation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #bfdbfe;
}

.explanation-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--day-border-alt);
  padding-bottom: 20px;
}

.explanation-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.explanation-media {
  flex: 0 0 40%;
  max-width: 400px;
  min-width: 250px;
}

.explanation-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-explanation-card h2 {
  color: var(--primary-blue);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--day-border-alt);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
}

.feature-icon {
  font-size: 0.9em;
  color: var(--primary-blue);
}

.feature-description {
  color: #334155;
  line-height: 1.8;
  font-size: 18px;
  text-align: right;
  margin: 0;
  padding: 2px 10px;
}

.feature-img-container {
  width: 100%;
  min-height: auto;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  border: none;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}

.feature-img-container img {
  grid-area: 1 / 1;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.feature-img-container img.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.toc-sidebar {
  position: fixed;
  top: 80px;
  left: 0;
  width: 280px;
  height: calc(100vh - 80px);
  background: var(--day-bg-main);
  border-right: 1px solid var(--day-border-alt);
  padding: 20px;
  z-index: 5;
  overflow-y: auto;
  transition: transform 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-blue);
}

.toc-header h3 {
  margin: 0;
  color: var(--dark-navy);
  font-size: 20px;
  font-weight: 700;
}

.toc-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #64748b;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.toc-toggle:hover {
  color: var(--primary-blue);
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #475569;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.toc-link i {
  font-size: 18px;
  width: 20px;
  text-align: center;
  color: #64748b;
  transition: color 0.3s ease;
}

.toc-link:hover {
  background: #f1f5f9;
  color: var(--primary-blue);
  transform: translateX(-5px);
}

.toc-link:hover i {
  color: var(--primary-blue);
}

.toc-link.active {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--primary-blue);
  font-weight: 600;
  border-right: 3px solid var(--primary-blue);
}

.toc-link.active i {
  color: var(--primary-blue);
}

body:has(.toc-sidebar) .info-container {
  margin-left: 280px;
  transition: margin-left 0.3s ease;
}

.toc-mobile-toggle {
  display: none;
  position: fixed;
  top: 15%;
  left: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  z-index: 99;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toc-mobile-toggle:hover {
  background: #1d4ed8;
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .info-container {
    margin: 0 auto !important;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-list {
    width: 100% !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .feature-list li {
    padding: 10px !important;
    min-width: 0 !important;
    font-size: 12px !important;
    word-break: break-word;
  }

  .feature-list li i {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
    margin-bottom: 5px !important;
  }

  .toc-sidebar {
    transform: translateX(-100%);
    padding-top: 40px;
  }

  .toc-sidebar.active {
    transform: translateX(0);
  }

  .toc-mobile-toggle {
    display: flex;
    top: 15%;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    z-index: 99;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    align-items: center;
    justify-content: center;
  }

  .toc-sidebar.active~.toc-mobile-toggle {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.5);
  }

  .toc-toggle {
    display: block;
  }

  .feature-explanation-grid {
    gap: 20px;
  }

  .explanation-row {
    flex-direction: column !important;
    gap: 20px;
  }

  .explanation-media,
  .explanation-text {
    width: 100% !important;
    max-width: 100% !important;
    flex: auto !important;
    min-width: 0 !important;
  }

  .explanation-media {
    order: -1 !important;
  }

  .slider-btn {
    opacity: 1 !important;
  }
}

.dark-mode .feature-explanation-card {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode .toc-sidebar {
  background: #1e293b;
  border-color: #334155;
}

.dark-mode .toc-header h3 {
  color: #f1f5f9;
}

.dark-mode .toc-link {
  color: #cbd5e1;
}

.dark-mode .toc-link:hover {
  background: #334155;
  color: #60a5fa;
}

.dark-mode .toc-link.active {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: #60a5fa;
  border-right-color: #60a5fa;
}

.dark-mode .explanation-row {
  border-bottom-color: #334155;
}

.dark-mode .card-title {
  color: #f1f5f9;
}

.dark-mode .feature-description {
  color: #cbd5e1;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInSimple {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

main>* {
  opacity: 0;
}

main>*:first-child,
main>*:last-child {
  animation: fadeInSimple 0.8s ease-out forwards;
}

main>*:not(:first-child):not(:last-child) {
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.social-footer {
  text-align: center;
  border-top: 1px solid var(--day-border-alt);
  background: var(--day-bg-main);
  position: relative;
  z-index: 2;
}

.social-footer h3 {
  color: var(--day-text-secondary);
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--day-shadow-sm);
}

.footer-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--day-shadow-md);
}

.footer-btn.facebook {
  background: #1877f2;
  color: white;
}

.footer-btn.youtube {
  background: #ff0000;
  color: white;
}

.footer-btn.other {
  background: #0f172a;
  color: white;
}

.dark-mode .social-footer {
  background: var(--night-bg-header);
  border-top-color: var(--night-border-color);
}

.dark-mode .social-footer h3 {
  color: var(--night-text-primary);
}

@media (max-width: 900px) {
  .search-counter {
    top: 80px;
    font-size: 14px;
    padding: 10px 20px;
  }

  .toast {
    bottom: 20px;
    font-size: 14px;
    padding: 12px 24px;
  }

  .unit-list {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .search-box {
    order: 4;
    width: 100%;
    margin-top: 10px;
  }

  .search-box input {
    width: 100%;
  }
}

.unit-list section:nth-child(1) {
  animation-delay: 0.1s;
}

.unit-list section:nth-child(2) {
  animation-delay: 0.2s;
}

.unit-list section:nth-child(3) {
  animation-delay: 0.3s;
}

.unit-list section:nth-child(4) {
  animation-delay: 0.4s;
}

.unit-list section:nth-child(5) {
  animation-delay: 0.5s;
}

.unit-list section:nth-child(6) {
  animation-delay: 0.6s;
}

.unit-list section:nth-child(7) {
  animation-delay: 0.7s;
}

.unit-list section:nth-child(8) {
  animation-delay: 0.8s;
}

.unit-list section:nth-child(9) {
  animation-delay: 0.9s;
}

.unit-list section:nth-child(10) {
  animation-delay: 1s;
}

.unit-list section:nth-child(n+11) {
  animation-delay: 1.1s;
}

.dark-mode .unit-list section {
  background: #1e293b;
  border: 1px solid #334155;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.dark-mode .unit-list section:hover {
  background: #1e293b;
  border-color: #475569;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode .unit-list h2 {
  color: #f8fafc;
}

.dark-mode .unit-list h2::after {
  background: #60a5fa;
  box-shadow: 0 0 5px rgba(96, 165, 250, 0.4);
}

.dark-mode thead {
  background: #0f172a;
  border-bottom: 1px solid #334155;
}

.dark-mode th {
  color: #94a3b8;
}

.dark-mode td {
  color: #cbd5e1;
}

.dark-mode td:nth-child(2) {
  color: #94a3b8;
}

.dark-mode tbody tr {
  border-bottom: 1px solid #334155;
}

.dark-mode tbody tr:hover {
  background-color: #334155;
}

.dark-mode .code {
  background: rgba(15, 23, 42, 0.5);
  color: #60a5fa;
  border-color: #334155;
}

.dark-mode tr:hover .code {
  background: #2563eb;
  color: white;
  border-color: #60a5fa;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.dark-mode .value {
  color: #f1f5f9;
}

.dark-mode .highlight {
  background: #f59e0b;
  color: #0f172a;
}

.dark-mode .toggle-view {
  color: var(--night-text-accent);
}

.dark-mode .copy-btn {
  background: var(--night-text-accent);
}

.info-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-extension h1 {
  color: var(--primary-blue);
  font-size: 28px;
  margin-bottom: 15px;
  text-align: center;
}

.about-extension p {
  color: var(--day-text-description);
  font-weight: 500;
  line-height: 1.8;
  font-size: 16px;
  text-align: center;
  max-width: 99%;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.team-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.team-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  text-align: right;
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.card-img-wrapper {
  width: 80px;
  height: 80px;
  margin: 0;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e0e7ff 0%, #2563eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
  transition: all 0.4s ease;
}

.team-card:hover .card-img-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.card-img-wrapper.hidden-identity {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
}

.team-card h3 {
  margin: 0;
  font-size: 22px;
  color: #1e293b;
}

.team-card:hover h3 {
  color: #2563eb;
}

.code-name {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.team-card:hover .code-name {
  transform: scale(1.05);
}

.reactor-card .code-name {
  background: #f1f5f9;
  color: #475569;
}

.role {
  color: #64748b;
  margin: 5px 0 0 0;
  font-size: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: #f8fafc;
  transition: all 0.3s ease;
  font-size: 18px;
  text-decoration: none;
}

.social-links a:hover {
  background: #2563eb;
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.team-card:hover .social-links a {
  transform: translateY(-3px);
}

.feature-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
  border-color: #bfdbfe;
}

.feature-list li i {
  color: #2563eb;
  font-size: 18px;
  background: #eff6ff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 10px 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-list li a {
  text-decoration: none;
  color: inherit;
}

.feature-list li:hover i {
  background: #2563eb;
  color: white;
  transform: scale(1.1);
}

.vision-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 20px;
  position: relative;
  scroll-snap-align: start;
}

.team-section {
  position: relative;
  padding: 60px 20px;
  margin: 40px 0;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: #2563eb;
}

.vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: #2563eb;
  transition: all 0.4s ease;
}

.vision-card:hover .vision-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
}

.vision-card h3 {
  color: #0f172a;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.vision-card p {
  color: #1e293b;
  font-weight: 500;
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
  text-align: center;
}

.social-footer {
  text-align: center;
  margin-top: auto;
  padding: 30px 0px;
  border-top: 1px solid #e2e8f0;
}

.social-footer h3 {
  color: #1e293b;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.footer-btn.facebook {
  background: #1877f2;
  color: white;
}

.footer-btn.facebook:hover {
  background: #166fe5;
  box-shadow: 0 8px 15px rgba(24, 119, 242, 0.25);
}

.footer-btn.youtube {
  background: #ff0000;
  color: white;
}

.footer-btn.youtube:hover {
  background: #e60000;
  box-shadow: 0 8px 15px rgba(255, 0, 0, 0.25);
}

.footer-btn.other {
  background: #0f172a;
  color: white;
}

.footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .feature-list {
    width: 100% !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .feature-list li {
    padding: 10px !important;
    min-width: 0 !important;
    font-size: 12px !important;
    word-break: break-word;
  }

  .feature-list li i {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
    margin-bottom: 5px !important;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .vision-card {
    padding: 30px 20px;
  }
}

.dark-mode .about-extension,
.dark-mode .team-section,
.dark-mode .vision-section {
  background: transparent;
}

.dark-mode .team-section h2 {
  color: var(--night-text-primary);
}

.dark-mode .vision-section {
  background: var(--night-bg-cta-container) !important;
}

.dark-mode .team-card,
.dark-mode .vision-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--night-border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dark-mode .team-card:hover,
.dark-mode .vision-card:hover {
  border-color: var(--night-text-accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(96, 165, 250, 0.15);
  transform: translateY(-8px);
}

.dark-mode .about-extension h1 {
  color: var(--night-text-accent);
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.2);
}

.dark-mode .about-extension p {
  color: var(--night-text-muted);
}

.dark-mode .vision-card h3 {
  color: var(--night-text-primary);
}

.dark-mode .vision-card p {
  color: var(--night-text-muted);
}

.dark-mode .vision-icon {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(30, 64, 175, 0.4) 100%);
  color: var(--night-text-accent);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.dark-mode .vision-card:hover .vision-icon {
  background: linear-gradient(135deg, var(--night-text-accent) 0%, var(--primary-blue) 100%);
  color: var(--night-bg-body);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.dark-mode .feature-list li {
  background: rgba(30, 41, 59, 0.6);
  border-color: var(--night-border-color);
  color: var(--night-text-secondary);
  backdrop-filter: blur(8px);
}

.dark-mode .feature-list li:hover {
  background: var(--night-bg-hover);
  border-color: var(--night-text-accent);
  color: white;
}

.dark-mode .feature-list li i {
  background: rgba(51, 65, 85, 0.5);
  color: var(--night-text-accent);
}

.dark-mode .feature-list li:hover i {
  background: var(--night-text-accent);
  color: var(--night-bg-body);
}

.dark-mode .team-info h3 {
  color: var(--night-text-primary);
}

.dark-mode .code-name {
  background: rgba(30, 58, 138, 0.5);
  color: var(--night-text-accent);
  border: 1px solid rgba(96, 165, 250, 0.3);
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.2);
}

.dark-mode .role {
  color: var(--night-text-muted);
}

.dark-mode .card-img-wrapper {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .social-links a {
  background: rgba(51, 65, 85, 0.5);
  color: var(--night-text-accent);
  border: 1px solid var(--night-border-color);
}

.dark-mode .social-links a:hover {
  background: var(--night-text-accent);
  color: var(--night-bg-body);
  border-color: var(--night-text-accent);
  box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
}

.dark-mode .social-footer {
  background: var(--night-bg-header) !important;
  border-top: 2px solid var(--night-border-color) !important;
}

.dark-mode .social-footer h3 {
  color: var(--night-text-primary);
}

.dark-mode .footer-btn.other {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--night-text-accent);
  color: var(--night-text-accent);
}

.dark-mode .footer-btn.other:hover {
  background: var(--night-text-accent);
  color: var(--night-bg-body);
}

.dark-mode .reactor-card {
  background: rgba(30, 41, 59, 0.8) !important;
  border: 1px solid var(--night-border-color) !important;
}

@media (max-width: 480px) {
  .feature-card {
    padding: 30px 20px;
    border-radius: 25px;
  }

  .feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .feature-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 30px;
    margin-bottom: 24px;
  }
}
