@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1F2937;
  background-color: #F5F5F5;
  direction: rtl;
  text-align: right;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #7C5AC2;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
a:hover {
  color: #4B2E83;
}

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

ul, ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#page {
  display: flex;
  min-height: 100vh;
}

.site-main {
  flex: 1;
  width: 100%;
  margin-top: 100px;
}
.site-main .content-wrapper {
  padding: 2rem;
}
@media (min-width: 1024px) {
  .site-main .content-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) {
  .site-main .content-wrapper {
    padding: 1rem;
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 1.5rem;
}

.gap-xl {
  gap: 2rem;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  background: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.site-header .header-container {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .site-header .header-container {
    padding: 0 1rem;
  }
}
.site-header .header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
.site-header .header-navigation {
  flex: 1;
  display: flex !important;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
@media (min-width: 768px) {
  .site-header .header-navigation {
    display: none;
  }
}
.site-header .header-navigation .header-menu {
  display: flex !important;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.site-header .header-navigation .header-menu li {
  margin: 0;
  position: relative;
}
.site-header .header-navigation .header-menu li > a {
  color: #1F2937;
  font-weight: 500;
  font-size: 1.25rem;
  text-decoration: none;
  transition: color 150ms ease-in-out;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-header .header-navigation .header-menu li > a::after {
  content: "";
  display: none;
}
.site-header .header-navigation .header-menu li.menu-item-has-children > a::after {
  content: "▼";
  display: inline-block;
  font-size: 0.75rem;
  margin-right: 0.25rem;
  transition: transform 150ms ease-in-out;
}
.site-header .header-navigation .header-menu li:hover > a {
  color: #7C5AC2;
}
.site-header .header-navigation .header-menu li .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 200px;
  padding: 0.5rem 0;
  margin-top: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 250ms ease-in-out;
  z-index: 1000;
  list-style: none;
  margin: 0;
}
.site-header .header-navigation .header-menu li .sub-menu li {
  margin: 0;
}
.site-header .header-navigation .header-menu li .sub-menu li a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: #1F2937;
  text-decoration: none;
  transition: background 150ms ease-in-out;
}
.site-header .header-navigation .header-menu li .sub-menu li a:hover {
  background: rgba(124, 90, 194, 0.05);
  color: #7C5AC2;
}
.site-header .header-navigation .header-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header .header-navigation .header-menu li:hover > a::after {
  transform: rotate(180deg);
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-header .header-actions {
    gap: 0.5rem;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo .site-logo-link {
  display: block;
  text-decoration: none;
}
.site-logo .site-logo-link .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4B2E83;
  letter-spacing: -0.5px;
  transition: color 150ms ease-in-out;
}
.site-logo .site-logo-link .logo-text:hover {
  color: #7C5AC2;
}
.site-logo .site-logo-link img {
  max-height: 50px;
  width: auto;
}

@media (min-width: 768px) {
  .header-actions .btn {
    padding: 0.25rem 1rem;
    font-size: 1.5rem;
  }
}
.header-actions .btn.btn-primary {
  background: #7C5AC2;
}
.header-actions .btn.btn-primary:hover {
  background: #4B2E83;
}
.header-actions .btn.btn-secondary {
  border-color: #7C5AC2;
  color: #7C5AC2;
}
.header-actions .btn.btn-secondary:hover {
  background: rgba(124, 90, 194, 0.05);
  border-color: #4B2E83;
  color: #4B2E83;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: #7C5AC2;
  color: #FFFFFF;
}
.btn-primary:hover {
  background: #4B2E83;
  color: #FFFFFF;
}

.btn-secondary {
  background: #FFFFFF;
  color: #1F2937;
  border: 1px solid #E5E7EB;
}
.btn-secondary:hover {
  background: #F9FAFB;
  border-color: #7C5AC2;
  color: #7C5AC2;
}

.btn-success {
  background: #10B981;
  color: #FFFFFF;
}
.btn-success:hover {
  background: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  color: #FFFFFF;
}

.btn-danger {
  background: #EF4444;
  color: #FFFFFF;
}
.btn-danger:hover {
  background: rgb(234.9802955665, 21.0197044335, 21.0197044335);
  color: #FFFFFF;
}

.quick-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.quick-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.quick-action-btn:active {
  transform: translateY(0);
}
.quick-action-btn {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.quick-action-btn .btn-icon {
  font-size: 1.125rem;
}
.quick-action-btn.btn-new-document {
  background: #7C5AC2;
  color: #FFFFFF;
}
.quick-action-btn.btn-new-document:hover {
  background: #4B2E83;
}
.quick-action-btn.btn-all-documents {
  background: #3B82F6;
  color: #FFFFFF;
}
.quick-action-btn.btn-all-documents:hover {
  background: rgb(11.1512195122, 99.1219512195, 242.8487804878);
}
.quick-action-btn.btn-new-client {
  background: #A78BFA;
  color: #FFFFFF;
}
.quick-action-btn.btn-new-client:hover {
  background: rgb(129.9090909091, 90.1074380165, 247.8925619835);
}
.quick-action-btn.btn-reports {
  background: #F97316;
  color: #FFFFFF;
}
.quick-action-btn.btn-reports:hover {
  background: rgb(214.4769874477, 91.129707113, 5.5230125523);
}
.quick-action-btn.btn-products {
  background: #10B981;
  color: #FFFFFF;
}
.quick-action-btn.btn-products:hover {
  background: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}

.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
}

.btn-icon-only {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #1F2937;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  transition: border-color 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.form-control:focus {
  outline: none;
  border-color: #7C5AC2;
  box-shadow: 0 0 0 3px rgba(124, 90, 194, 0.1);
}
.form-control::placeholder {
  color: #9CA3AF;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  padding-left: 2rem;
  appearance: none;
}

.form-control.is-invalid {
  border-color: #EF4444;
}
.form-control.is-invalid:focus {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.invalid-feedback {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #EF4444;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  margin-top: 2rem;
}

.site-footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
  padding: 6rem 0 2rem;
}
.site-footer .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .site-footer .footer-container {
    padding: 0 1rem;
  }
}
.site-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.site-footer .footer-section h3.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.site-footer .footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}
.site-footer .footer-menu {
  list-style: none;
}
.site-footer .footer-menu li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
.site-footer .footer-menu a:hover {
  color: #FFFFFF;
}
.site-footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.site-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 999;
  text-decoration: none;
  transition: all 250ms ease-in-out;
  overflow: hidden;
}
@media (min-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 1.5rem;
    left: 1.5rem;
  }
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  background: #20BA5A;
}
.whatsapp-float .whatsapp-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float .whatsapp-icon svg {
  width: 100%;
  height: 100%;
}
.whatsapp-float .whatsapp-text {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: #25D366;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease-in-out;
}
@media (min-width: 768px) {
  .whatsapp-float .whatsapp-text {
    display: none;
  }
}
.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

.page-header {
  text-align: center;
  margin-bottom: 6rem;
  padding: 2rem 0;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  margin-bottom: 6rem;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: box-shadow 250ms ease-in-out;
}
.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.feature-card {
  text-align: center;
  padding: 2rem;
  transition: transform 250ms ease-in-out;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.feature-card .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}
.feature-card .feature-description {
  color: #6B7280;
  line-height: 1.75;
}

.pricing-grid {
  margin-bottom: 6rem;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: box-shadow 250ms ease-in-out;
}
.pricing-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.pricing-card {
  padding: 2rem;
  position: relative;
  text-align: center;
  transition: transform 250ms ease-in-out;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.pricing-card.featured {
  border: 2px solid #7C5AC2;
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .pricing-card.featured {
    transform: scale(1);
  }
}
.pricing-card .pricing-badge {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background: #7C5AC2;
  color: #FFFFFF;
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
.pricing-card .pricing-header {
  margin-bottom: 2rem;
}
.pricing-card .pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}
.pricing-card .pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}
.pricing-card .pricing-price .price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
}
.pricing-card .pricing-price .price-period {
  font-size: 1.125rem;
  color: #6B7280;
}
.pricing-card .pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: right;
}
.pricing-card .pricing-features li {
  padding: 0.5rem 0;
  color: #6B7280;
  font-size: 1rem;
}

.pricing-faq {
  margin-top: 6rem;
}
.pricing-faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.pricing-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.pricing-faq .faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: box-shadow 250ms ease-in-out;
}
.pricing-faq .faq-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.pricing-faq .faq-item {
  padding: 1.5rem;
}
.pricing-faq .faq-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #111827;
}
.pricing-faq .faq-item p {
  color: #6B7280;
  margin: 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 6rem;
}
.about-section h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  color: #111827;
}
.about-section p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #6B7280;
  margin-bottom: 1rem;
}

.about-features {
  list-style: none;
  padding: 0;
}
.about-features li {
  padding: 0.5rem 0;
  padding-right: 1.5rem;
  position: relative;
  color: #6B7280;
  font-size: 1rem;
}
.about-features li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #10B981;
  font-weight: 700;
}

.why-choose {
  margin-top: 2rem;
}

.why-item {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: box-shadow 250ms ease-in-out;
}
.why-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.why-item {
  padding: 1.5rem;
}
.why-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111827;
}
.why-item p {
  color: #6B7280;
  margin: 0;
}

.contact-section {
  margin-top: 2rem;
}

.contact-wrapper {
  gap: 6rem;
}
@media (min-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-form-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #111827;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #111827;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.contact-info-item .contact-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 90, 194, 0.1);
  border-radius: 9999px;
  flex-shrink: 0;
}
.contact-info-item .contact-details {
  flex: 1;
}
.contact-info-item .contact-details h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #111827;
}
.contact-info-item .contact-details p {
  color: #6B7280;
  margin: 0;
}
.contact-info-item .contact-details p a {
  color: #7C5AC2;
}
.contact-info-item .contact-details p a:hover {
  color: #4B2E83;
}

.page-cta-section {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(124, 90, 194, 0.1) 0%, rgba(75, 46, 131, 0.1) 100%);
  border-radius: 16px;
  margin-top: 6rem;
}
.page-cta-section h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: #111827;
}
.page-cta-section p {
  font-size: 1.125rem;
  color: #6B7280;
  margin-bottom: 2rem;
}

.error-404 {
  text-align: center;
  padding: 6rem 0;
}
.error-404 .page-title {
  font-size: 2.25rem;
  color: #111827;
  margin-bottom: 1.5rem;
}
.error-404 .page-content {
  max-width: 600px;
  margin: 0 auto;
}
.error-404 .page-content p {
  font-size: 1.125rem;
  color: #6B7280;
  margin-bottom: 1rem;
}
.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-section {
  padding: 6rem 0;
  height: fit-content;
  background: linear-gradient(135deg, rgba(124, 90, 194, 0.05) 0%, rgba(75, 46, 131, 0.02) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 10rem 0;
  }
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 90, 194, 0.03) 0%, transparent 100%);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(124, 90, 194, 0.02) 10px, rgba(124, 90, 194, 0.02) 20px);
  z-index: 0;
}
@media (min-width: 768px) {
  .hero-section::before {
    display: none;
  }
}
.hero-section[style*=background-image]::before {
  display: none;
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(51, 44, 77, 0.7) 0%, rgba(75, 46, 131, 0.6) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-wrapper {
    gap: 4rem;
  }
}
@media (min-width: 768px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.hero-wrapper.no-visual {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}
.hero-wrapper.no-visual .hero-content {
  text-align: center;
}

.hero-visual {
  position: relative;
  min-height: 400px;
}
@media (min-width: 768px) {
  .hero-visual {
    order: 2;
    min-height: 300px;
  }
}
.hero-visual:empty {
  display: none;
}

.device-mockups {
  position: relative;
  height: 500px;
}
@media (min-width: 768px) {
  .device-mockups {
    height: 300px;
  }
}

.device-mockup {
  position: absolute;
}
.device-mockup img {
  max-width: 100%;
  height: auto;
  display: block;
}
.device-mockup.device-desktop {
  left: 0;
  top: 0;
  width: 80%;
  z-index: 3;
}
.device-mockup.device-tablet {
  left: 20%;
  top: 15%;
  width: 60%;
  z-index: 2;
}
.device-mockup.device-mobile {
  left: 40%;
  top: 30%;
  width: 40%;
  z-index: 1;
}

.hero-content {
  text-align: right;
  position: relative;
}
@media (min-width: 768px) {
  .hero-content {
    order: 1;
    text-align: center;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-section[style*=background-image] .hero-title {
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 1.875rem;
  }
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6B7280;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-section[style*=background-image] .hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

.business-types {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  position: relative;
}
@media (min-width: 768px) {
  .business-types {
    justify-content: center;
  }
}

.business-type-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  transition: transform 250ms ease-in-out;
}
.business-type-item:hover {
  transform: translateY(-4px);
}

.business-type-icon {
  width: 60px;
  height: 60px;
  background: rgba(124, 90, 194, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #7C5AC2;
  transition: all 250ms ease-in-out;
}
.business-type-item:hover .business-type-icon {
  background: rgba(124, 90, 194, 0.2);
  color: #4B2E83;
}
.hero-section[style*=background-image] .business-type-icon {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.business-type-item:hover .hero-section[style*=background-image] .business-type-icon {
  background: rgba(255, 255, 255, 0.25);
}

.business-type-label {
  font-size: 0.875rem;
  color: #6B7280;
  font-weight: 500;
}
.hero-section[style*=background-image] .business-type-label {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .hero-actions {
    justify-content: center;
  }
}

.why-glance-section {
  padding: 6rem 0;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .why-glance-section {
    padding: 4rem 0;
  }
}

.why-glance-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .why-glance-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .why-glance-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.why-glance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(124, 90, 194, 0.15);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 250ms ease-in-out;
  height: 100%;
}
.why-glance-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(124, 90, 194, 0.4);
}
@media (min-width: 768px) {
  .why-glance-item {
    padding: 2rem;
  }
}

.why-glance-icon {
  font-size: 3.5rem;
  line-height: 1;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 90, 194, 0.15) 0%, rgba(124, 90, 194, 0.08) 100%);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 250ms ease-in-out;
  box-shadow: 0 2px 8px rgba(124, 90, 194, 0.1);
}
.why-glance-item:hover .why-glance-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 12px rgba(124, 90, 194, 0.2);
}
@media (min-width: 768px) {
  .why-glance-icon {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
}

.why-glance-content {
  flex: 1;
  width: 100%;
}

.why-glance-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-glance-description {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.75;
  margin: 0;
}

.faq-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(124, 90, 194, 0.02) 0%, rgba(75, 46, 131, 0.01) 100%);
}
@media (min-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid rgba(124, 90, 194, 0.1);
  overflow: hidden;
  transition: all 250ms ease-in-out;
}
.faq-item:hover {
  border-color: rgba(124, 90, 194, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.faq-item.active {
  border-color: rgba(124, 90, 194, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: transparent;
  border: none;
  text-align: right;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.faq-question:hover {
  background: rgba(124, 90, 194, 0.02);
}
.faq-question .faq-question-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  flex: 1;
  margin-left: 1.5rem;
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 90, 194, 0.1);
  border-radius: 8px;
  color: #7C5AC2;
  transition: all 250ms ease-in-out;
}
.faq-question .faq-icon svg {
  transition: transform 250ms ease-in-out;
}
.faq-question[aria-expanded=true] .faq-icon {
  background: rgba(124, 90, 194, 0.15);
}
.faq-question[aria-expanded=true] .faq-icon svg {
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .faq-question {
    padding: 1.5rem;
  }
  .faq-question .faq-question-text {
    font-size: 1rem;
    margin-left: 1rem;
  }
  .faq-question .faq-icon {
    width: 28px;
    height: 28px;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease-in-out ease-out;
}
.faq-answer .faq-answer-content {
  padding: 0 2rem 2rem;
  color: #6B7280;
  line-height: 1.75;
}
.faq-answer .faq-answer-content p {
  margin: 0 0 1rem 0;
}
.faq-answer .faq-answer-content p:last-child {
  margin-bottom: 0;
}
.faq-answer .faq-answer-content a {
  color: #7C5AC2;
  text-decoration: none;
}
.faq-answer .faq-answer-content a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .faq-answer .faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.875rem;
  }
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 350ms ease-in-out ease-in;
}

.features-preview-section {
  padding: 6rem 0;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .features-preview-section {
    padding: 4rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
}

.features-tabs-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.features-tablist {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  column-gap: 1rem;
  margin-bottom: 4rem;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .features-tablist {
    row-gap: 0.125rem;
    column-gap: 1rem;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    background-color: #4B2E83;
  }
}
.features-tablist::-webkit-scrollbar {
  height: 4px;
}
.features-tablist::-webkit-scrollbar-track {
  background: rgba(124, 90, 194, 0.05);
  border-radius: 4px;
}
.features-tablist::-webkit-scrollbar-thumb {
  background: rgba(124, 90, 194, 0.3);
  border-radius: 4px;
}
.features-tablist::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 90, 194, 0.5);
}

.feature-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  white-space: nowrap;
  position: relative;
  outline: none;
}
@media (min-width: 768px) {
  .feature-tab {
    font-size: 1.5rem;
    gap: 0.25rem;
  }
}
.feature-tab:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(124, 90, 194, 0.5);
  border-radius: 12px;
}
.feature-tab:focus {
  border-radius: 4px;
}
.feature-tab.active {
  border-bottom-color: #7C5AC2;
  background: rgba(124, 90, 194, 0.05);
  font-weight: 700;
}
.feature-tab .feature-tab-icon {
  font-size: 1.25rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .feature-tab .feature-tab-icon {
    font-size: 1.125rem;
    display: none;
  }
}
.feature-tab .feature-tab-title {
  line-height: 1.4;
}

.features-tabpanel-wrapper {
  position: relative;
  min-height: 300px;
}
@media (min-width: 768px) {
  .features-tabpanel-wrapper {
    min-height: 250px;
  }
}

.feature-tabpanel {
  display: none;
  opacity: 0;
  animation: fadeIn 250ms ease-in-out ease-in-out;
}
.feature-tabpanel.active {
  display: block;
  opacity: 1;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-tabpanel-content {
  text-align: center;
  padding: 4rem;
  background: linear-gradient(135deg, rgba(124, 90, 194, 0.03) 0%, rgba(75, 46, 131, 0.02) 100%);
  border-radius: 16px;
  border: 1px solid rgba(124, 90, 194, 0.1);
}
@media (min-width: 768px) {
  .feature-tabpanel-content {
    padding: 2rem;
  }
}

.feature-tabpanel-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: inline-block;
}
@media (min-width: 768px) {
  .feature-tabpanel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

.feature-tabpanel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .feature-tabpanel-title {
    font-size: 1.25rem;
  }
}

.feature-tabpanel-description {
  font-size: 1.125rem;
  color: #6B7280;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .feature-tabpanel-description {
    font-size: 1rem;
  }
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #7C5AC2 0%, #4B2E83 100%);
  color: #FFFFFF;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 4rem 0;
  }
}
.cta-section .cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-section .cta-title {
    font-size: 1.5rem;
  }
}
.cta-section .cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.cta-section .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .cta-actions .btn-primary {
  background: #FFFFFF;
  color: #4B2E83;
}
.cta-section .cta-actions .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #4B2E83;
}
.cta-section .cta-actions .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.cta-section .cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.who-is-it-for-section {
  padding: 6rem 0;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .who-is-it-for-section {
    padding: 4rem 0;
  }
}

.who-is-it-for-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  height: auto;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .who-is-it-for-accordion {
    flex-direction: row;
    height: 500px;
    gap: 0;
  }
}

.who-is-it-for-item {
  position: relative;
  flex: 1 1 100%;
  min-width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 200px;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: flex 600ms cubic-bezier(0.4, 0, 0.2, 1), min-width 600ms cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}
.who-is-it-for-item:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
@media (min-width: 768px) {
  .who-is-it-for-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
.who-is-it-for-item:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media (min-width: 768px) {
  .who-is-it-for-item:last-child {
    border-bottom-right-radius: 0;
    border-top-left-radius: 12px;
  }
}
.who-is-it-for-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: opacity 250ms ease-in-out;
}
.who-is-it-for-item.active::before {
  background: rgba(0, 0, 0, 0.2);
}
.who-is-it-for-item[style*=background-color]::before {
  display: none;
}
@media (min-width: 768px) {
  .who-is-it-for-item {
    flex: 1 1 0;
    min-width: 120px;
    height: 100%;
    min-height: auto;
  }
}
@media (min-width: 768px) {
  .who-is-it-for-item:not(.active) {
    flex: 1 1 0;
    min-width: 120px;
  }
  .who-is-it-for-item:not(.active) .who-is-it-for-trigger .who-is-it-for-title {
    transform: rotate(-90deg);
  }
  .who-is-it-for-item:not(.active):hover .who-is-it-for-trigger .who-is-it-for-title {
    transform: rotate(-90deg) scale(1.05);
  }
}
@media (min-width: 768px) {
  .who-is-it-for-item.active {
    flex: 2.5 1 0;
    min-width: 400px;
  }
}
.who-is-it-for-item.active .who-is-it-for-trigger {
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  padding: 1.5rem 2rem 0;
}
.who-is-it-for-item.active .who-is-it-for-trigger .who-is-it-for-title {
  transform: none;
  white-space: normal;
  text-align: right;
  padding: 0;
  position: relative;
  top: auto;
  right: auto;
}
.who-is-it-for-item.active .who-is-it-for-content {
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
  padding: 1rem 2rem 2rem;
}

.who-is-it-for-trigger {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  transition: padding 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .who-is-it-for-trigger {
    min-height: auto;
  }
}
.who-is-it-for-trigger .who-is-it-for-title {
  position: relative;
  z-index: 3;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  padding: 1.5rem;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1), font-size 600ms cubic-bezier(0.4, 0, 0.2, 1), padding 600ms cubic-bezier(0.4, 0, 0.2, 1), white-space 600ms cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .who-is-it-for-trigger .who-is-it-for-title {
    font-size: 1.25rem;
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .who-is-it-for-trigger:hover .who-is-it-for-title {
    transform: scale(1.05);
  }
}
.who-is-it-for-trigger:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

.who-is-it-for-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1), max-height 600ms cubic-bezier(0.4, 0, 0.2, 1), padding 600ms cubic-bezier(0.4, 0, 0.2, 1), visibility 600ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  flex-shrink: 0;
}
.who-is-it-for-content .who-is-it-for-description {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.75;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin: 0;
  text-align: right;
}
@media (min-width: 768px) {
  .who-is-it-for-content .who-is-it-for-description {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .sidebar {
    transform: translateX(100%);
  }
  .sidebar.mobile-open {
    transform: translateX(0);
  }
  .site-main {
    margin-right: 0;
  }
  .metric-cards {
    grid-template-columns: 1fr;
  }
  .charts-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  .header-right {
    width: 100%;
    margin-top: 0.5rem;
  }
  .quick-actions {
    flex-direction: column;
  }
  .quick-action-btn {
    width: 100%;
    justify-content: center;
  }
  .date-range-selector .date-range-btn {
    flex: 1;
    min-width: 0;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
