.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 700,
    'GRAD' 0,
    'opsz' 42;
  font-size: 28px;
  user-select: none;
}
.dark-mode-transition * { transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.rotate-animation { animation: rotate 0.5s ease; }
.mobile-menu { transition: transform 0.2s ease, opacity 0.2s ease !important; }
.mobile-menu .mobile-menu-item { transition: none !important; transform: none !important; opacity: 1 !important; }
@media (max-width: 1024px) {
  header.mobile-header {
    transition: transform 0.3s ease, background-color 0.3s ease;
    will-change: transform;
  }
  header.mobile-header.header-hidden {
    transform: translateY(-100%);
  }
}
body.menu-open { overflow: hidden; }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.content-wrap :where(h1,h2,h3,h4,p,li,a,span){ overflow-wrap: anywhere; word-break: break-word; hyphens: none; }
.feature-card {
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 260px;
}
.feature-card .flex-1 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.feature-card ul {
  margin-top: auto;
}
:root {
  --scrollbar-track-light: #f1f5f9;
  --scrollbar-thumb-light: #cbd5e1;
  --scrollbar-thumb-hover-light: #94a3b8;
  --scrollbar-track-dark: #000000;
  --scrollbar-thumb-dark: #1a1a1a;
  --scrollbar-thumb-hover-dark: #333333;
}
button, a, .cursor-pointer {
  cursor: pointer;
}
nav, header, footer, .mobile-menu, .swiper-pagination, .category-pill, .billing-switch, .theme-toggle, .lang-btn, .mobile-lang-btn, .mobile-menu-item, .mobile-panel-btn, .popular-tag, .price-counter, .stat-number, .testimonial-footer, .material-symbols-outlined, i, .fas, .fab, .fa {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
p, h1, h2, h3, h4, h5, h6, span, div, li, td, th, .testimonial-text, .content-wrap, main, section, article, .animate-on-scroll, .feature-card, .pricing-card, .testimonial-card, input, textarea, [contenteditable] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  min-width: 320px;
  overflow-x: auto;
}
.main-btn {
  background: linear-gradient(135deg, #00A9FF 0%, #33bbff 100%);
  color: white !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 169, 255, 0.3);
}
.main-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.main-btn:hover::before {
  left: 100%;
}
.main-btn:hover {
  background: linear-gradient(135deg, #33bbff 0%, #66ccff 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 169, 255, 0.5);
}
.main-btn:active {
  transform: translateY(-1px) scale(0.98);
}
.main-btn i {
  color: white !important;
}
.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #F5F5F7;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.secondary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.secondary-btn:hover::before {
  width: 100%;
}
.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.secondary-btn:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.container, .max-w-7xl, .max-w-6xl, .max-w-5xl, .max-w-4xl, .max-w-3xl, .max-w-2xl, .max-w-xl, .max-w-lg, .max-w-md, .max-w-sm {
  width: 100%;
  max-width: none;
}
@media (min-width: 320px) {
  .container { max-width: min(320px, 100vw); }
  .max-w-sm { max-width: min(24rem, 100vw); }
}
@media (min-width: 640px) {
  .container { max-width: min(640px, 100vw); }
  .max-w-md { max-width: min(28rem, 100vw); }
}
@media (min-width: 768px) {
  .container { max-width: min(768px, 100vw); }
  .max-w-lg { max-width: min(32rem, 100vw); }
}
@media (min-width: 1024px) {
  .container { max-width: min(1024px, 100vw); }
  .max-w-xl { max-width: min(36rem, 100vw); }
  .max-w-2xl { max-width: min(42rem, 100vw); }
}
@media (min-width: 1280px) {
  .container { max-width: min(1280px, 100vw); }
  .max-w-3xl { max-width: min(48rem, 100vw); }
  .max-w-4xl { max-width: min(56rem, 100vw); }
}
@media (min-width: 1536px) {
  .container { max-width: min(1536px, 100vw); }
  .max-w-5xl { max-width: min(64rem, 100vw); }
  .max-w-6xl { max-width: min(72rem, 100vw); }
  .max-w-7xl { max-width: min(80rem, 100vw); }
}
@media (min-width: 2000px) {
  .container { max-width: 90vw; }
  .max-w-7xl { max-width: 90vw; }
  .max-w-6xl { max-width: 85vw; }
  .max-w-5xl { max-width: 80vw; }
  .max-w-4xl { max-width: 75vw; }
  .max-w-3xl { max-width: 70vw; }
  .max-w-2xl { max-width: 65vw; }
  .max-w-xl { max-width: 60vw; }
  .max-w-lg { max-width: 55vw; }
  .max-w-md { max-width: 50vw; }
  .max-w-sm { max-width: 45vw; }
}
.text-xs { font-size: clamp(0.75rem, 2vw, 0.875rem); }
.text-sm { font-size: clamp(0.875rem, 2.5vw, 1rem); }
.text-base { font-size: clamp(1rem, 3vw, 1.125rem); }
.text-lg { font-size: clamp(1.125rem, 3.5vw, 1.25rem); }
.text-xl { font-size: clamp(1.25rem, 4vw, 1.5rem); }
.text-2xl { font-size: clamp(1.5rem, 5vw, 1.875rem); }
.text-3xl { font-size: clamp(1.875rem, 6vw, 2.25rem); }
.text-4xl { font-size: clamp(2.25rem, 7vw, 3rem); }
.text-5xl { font-size: clamp(3rem, 8vw, 3.75rem); }
.p-1 { padding: clamp(0.25rem, 1vw, 0.5rem); }
.p-2 { padding: clamp(0.5rem, 1.5vw, 1rem); }
.p-3 { padding: clamp(0.75rem, 2vw, 1.5rem); }
.p-4 { padding: clamp(1rem, 2.5vw, 2rem); }
.p-6 { padding: clamp(1.5rem, 3vw, 3rem); }
.p-8 { padding: clamp(2rem, 4vw, 4rem); }
.m-1 { margin: clamp(0.25rem, 1vw, 0.5rem); }
.m-2 { margin: clamp(0.5rem, 1.5vw, 1rem); }
.m-3 { margin: clamp(0.75rem, 2vw, 1.5rem); }
.m-4 { margin: clamp(1rem, 2.5vw, 2rem); }
.m-6 { margin: clamp(1.5rem, 3vw, 3rem); }
.m-8 { margin: clamp(2rem, 4vw, 4rem); }
.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 2rem);
}
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
@media (max-width: 640px) {
  .sm\:flex-row { flex-direction: column; }
  .sm\:grid-cols-2 { grid-template-columns: 1fr; }
  .sm\:grid-cols-3 { grid-template-columns: 1fr; }
  .sm\:grid-cols-4 { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 769px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.dark ::-webkit-scrollbar-track {
  background: transparent !important;
}
.dark ::-webkit-scrollbar-thumb {
  background: #1a1a1a !important;
}
.dark ::-webkit-scrollbar-thumb:hover {
  background: #333333 !important;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.dark * {
  scrollbar-color: #1a1a1a transparent !important;
}
html.dark ::-webkit-scrollbar-track {
  background: transparent !important;
}
html.dark ::-webkit-scrollbar-thumb {
  background: #1a1a1a !important;
}
html.dark ::-webkit-scrollbar-thumb:hover {
  background: #333333 !important;
}
html.dark * {
  scrollbar-color: #1a1a1a transparent !important;
}
@media (max-width: 767px) {
  .container {
    max-width: 100vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  h1 { font-size: 2rem !important; line-height: 1.2 !important; }
  h2 { font-size: 1.75rem !important; line-height: 1.3 !important; }
  h3 { font-size: 1.5rem !important; line-height: 1.4 !important; }
  .py-24 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .py-16 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .py-8 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .btn-mobile {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
  }
  .pricing-card, .feature-card {
    margin-bottom: 1rem !important;
    padding: 1rem !important;
  }
  .mobile-header {
    padding: 0.5rem 0 !important;
  }
  .grid-cols-1 { grid-template-columns: 1fr !important; }
  .grid-cols-2 { grid-template-columns: 1fr !important; }
  .grid-cols-3 { grid-template-columns: 1fr !important; }
  .grid-cols-4 { grid-template-columns: 1fr !important; }
}
.feature-title {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
  line-height: 1.3;
}
.no-hyphens,
.no-hyphens * {
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  -ms-hyphens: none !important;
  word-break: keep-all;
  overflow-wrap: normal;
}
.feature-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}
.lang-btn:hover {
  background-color: #f3f4f6;
}
.dark .lang-btn:hover {
  background-color: #1f2937;
}
.flag {
  width: 20px;
  height: auto;
}
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 40;
  will-change: transform, opacity;
}
.dark .mobile-menu {
  background-color: #0f1419;
  border-top-color: #1a1f2e;
}
.mobile-menu.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-item {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.3s ease;
  transition-delay: 0s;
  will-change: transform, opacity;
}
.mobile-menu.show .mobile-menu-item {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu.show .mobile-menu-item:nth-child(1),
.mobile-menu.show .mobile-menu-item:nth-child(2),
.mobile-menu.show .mobile-menu-item:nth-child(3),
.mobile-menu.show .mobile-menu-item:nth-child(4),
.mobile-menu.show .mobile-menu-item:nth-child(5),
.mobile-menu.show .mobile-menu-item:nth-child(6) { transition-delay: 0s; }
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
}
.mobile-menu-item {
  color: #111827;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  display: block;
  width: 100%;
  text-align: center;
}
.dark .mobile-menu-item {
  color: #c9d1d9;
}
.mobile-menu-item:hover {
  background-color: #f3f4f6;
}
.dark .mobile-menu-item:hover {
  background-color: #1f2937;
}
#mobile-menu-button {
  cursor: pointer !important;
  pointer-events: auto !important;
}
#mobile-menu-button i {
  pointer-events: none !important;
}
button, a, .btn, .cursor-pointer, .bg-light-primary, .bg-dark-primary, .theme-toggle, .lang-btn, .mobile-lang-btn, .mobile-panel-btn, .popular-tag, .price-counter, .stat-number, .testimonial-footer, .material-symbols-outlined, i, .fas, .fab, .fa {
  pointer-events: auto !important;
  cursor: pointer !important;
}
.mobile-active {
  color: #4f46e5 !important;
  background-color: #eef2ff;
}
.dark .mobile-active {
  color: #58a6ff !important;
  background-color: #1e3a8a;
}
.mobile-panel-btn {
  background-color: #4f46e5;
  color: white !important;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  margin-top: 0.5rem;
}
.mobile-panel-btn:hover {
  background-color: #4338ca !important;
}
.dark .mobile-panel-btn {
  background-color: #58a6ff;
}
.dark .mobile-panel-btn:hover {
  background-color: #80b6ff !important;
}
.mobile-lang-container {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}
.dark .mobile-lang-container {
  border-top-color: #1a1f2e;
}
.mobile-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  background-color: #f3f4f6;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #111827;
  font-size: 0.875rem;
}
.dark .mobile-lang-btn {
  background-color: #1f2937;
  color: #c9d1d9;
}
.mobile-lang-btn:hover {
  background-color: #e5e7eb;
}
.dark .mobile-lang-btn:hover {
  background-color: #374151;
}
.flag {
  width: 20px;
  height: auto;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
