:root {
  --lp-primary: #4f46e5;
  --lp-primary-dark: #4338ca;
  --lp-accent: #06b6d4;
  --lp-dark: #0f172a;
  --lp-muted: #64748b;
  --lp-light: #f8fafc;
  --lp-border: #e2e8f0;
  --lp-gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  --lp-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  --lp-radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.landing-page {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--lp-dark);
  background: #fff;
  overflow-x: hidden;
}

.landing-page a {
  text-decoration: none;
}

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

/* Navbar */
.lp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.lp-navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--lp-border);
  padding: 0.65rem 0;
}

.lp-navbar .navbar-brand img {
  height: 36px;
}

.lp-navbar .nav-link {
  color: var(--lp-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.lp-navbar .nav-link:hover {
  color: var(--lp-primary);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-btn-primary {
  background: var(--lp-gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
}

.lp-btn-primary:hover {
  color: #fff;
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.45);
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-dark);
  border: 2px solid var(--lp-border);
}

.lp-btn-outline:hover {
  border-color: var(--lp-primary);
  color: var(--lp-primary);
}

.lp-btn-white {
  background: #fff;
  color: var(--lp-primary);
}

.lp-btn-white:hover {
  color: var(--lp-primary-dark);
  box-shadow: var(--lp-shadow);
}

/* Hero */
.lp-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(79, 70, 229, 0.12), transparent),
              radial-gradient(ellipse 60% 40% at 90% 20%, rgba(6, 182, 212, 0.08), transparent),
              var(--lp-light);
  overflow: hidden;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lp-muted);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lp-hero-badge span {
  background: var(--lp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.lp-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.lp-hero h1 .highlight {
  background: var(--lp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-lead {
  font-size: 1.2rem;
  color: var(--lp-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.lp-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.lp-hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lp-dark);
}

.lp-hero-stat span {
  font-size: 0.875rem;
  color: var(--lp-muted);
}

.lp-hero-visual {
  position: relative;
}

.lp-hero-image {
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  border: 1px solid var(--lp-border);
}

.lp-hero-float {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--lp-shadow);
  border: 1px solid var(--lp-border);
  animation: float 4s ease-in-out infinite;
}

.lp-hero-float-1 {
  bottom: -20px;
  left: -30px;
  animation-delay: 0s;
}

.lp-hero-float-2 {
  top: 30px;
  right: -20px;
  animation-delay: 1.5s;
}

.lp-hero-float .value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #10b981;
}

.lp-hero-float .label {
  font-size: 0.8rem;
  color: var(--lp-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Logos bar */
.lp-logos {
  padding: 3rem 0;
  border-bottom: 1px solid var(--lp-border);
}

.lp-logos p {
  text-align: center;
  font-size: 0.875rem;
  color: var(--lp-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.lp-logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0.5;
}

.lp-logos-grid span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lp-muted);
  letter-spacing: -0.02em;
}

/* Sections */
.lp-section {
  padding: 6rem 0;
}

.lp-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.lp-section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-primary);
  margin-bottom: 0.75rem;
}

.lp-section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.lp-section-header p {
  color: var(--lp-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Feature cards */
.lp-feature-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.lp-feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.lp-feature-card-body {
  padding: 1.75rem;
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.lp-feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.lp-feature-card p {
  color: var(--lp-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Showcase */
.lp-showcase {
  background: var(--lp-dark);
  color: #fff;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 1rem;
}

.lp-showcase-content {
  padding: 4rem 3rem;
}

.lp-showcase-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.lp-showcase-content p {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.lp-showcase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.lp-showcase-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.lp-showcase-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* Steps */
.lp-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.lp-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lp-gradient);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.lp-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.lp-step p {
  color: var(--lp-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials */
.lp-testimonial {
  background: var(--lp-light);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 2rem;
  height: 100%;
}

.lp-testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.lp-testimonial p {
  color: var(--lp-dark);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.lp-testimonial-author span {
  font-size: 0.85rem;
  color: var(--lp-muted);
}

/* Pricing */
.lp-pricing-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.lp-pricing-card.featured {
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 1px var(--lp-primary), var(--lp-shadow);
  transform: scale(1.03);
}

.lp-pricing-badge {
  display: inline-block;
  background: var(--lp-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.lp-pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lp-pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
}

.lp-pricing-price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--lp-muted);
}

.lp-pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.lp-pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--lp-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-pricing-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
}

/* CTA */
.lp-cta {
  background: var(--lp-gradient);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  margin: 0 1rem;
}

.lp-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.lp-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Footer */
.lp-footer {
  background: var(--lp-dark);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.lp-footer h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.lp-footer a {
  color: #94a3b8;
  font-size: 0.9rem;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.lp-footer a:hover {
  color: #fff;
}

.lp-footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}

.lp-footer-brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .lp-hero {
    padding-top: 7rem;
    text-align: center;
  }

  .lp-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-hero-actions {
    justify-content: center;
  }

  .lp-hero-stats {
    justify-content: center;
  }

  .lp-hero-visual {
    margin-top: 3rem;
  }

  .lp-hero-float {
    display: none;
  }

  .lp-showcase-content {
    padding: 3rem 2rem;
  }

  .lp-pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .lp-section {
    padding: 4rem 0;
  }

  .lp-cta {
    padding: 3rem 1.5rem;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */

#main-wrapper[data-layout="vertical"]:not(:has(.app-topstrip)) .app-header {
  top: 0;
}

#main-wrapper[data-layout="vertical"][data-sidebar-position="fixed"]:not(:has(.app-topstrip)) .left-sidebar {
  top: 0;
}

#main-wrapper[data-header-position="fixed"] .body-wrapper .container-fluid {
  padding-top: calc(70px + 30px);
}

#main-wrapper .left-sidebar {
  height: 100vh;
  min-height: 100vh;
}

#main-wrapper .left-sidebar .sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

#main-wrapper .left-sidebar .scroll-sidebar {
  flex: 1 1 auto;
  height: auto !important;
  min-height: 0;
  overflow-y: auto;
}

@media (max-width: 1199.98px) {
  #main-wrapper .left-sidebar .scroll-sidebar {
    height: auto !important;
  }
}

@media (max-width: 991.98px) {
  #main-wrapper[data-layout="vertical"]:not(:has(.app-topstrip)) .app-header,
  #main-wrapper[data-layout="vertical"][data-sidebar-position="fixed"]:not(:has(.app-topstrip)) .left-sidebar {
    top: 0;
  }

  #main-wrapper[data-header-position="fixed"] .body-wrapper .container-fluid {
    padding-top: calc(70px + 30px);
  }
}

/* Will Pagination */
.apple_pagination {
  margin: 20px 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  text-align: center;
  padding: 0.5em;
  cursor: default;
  font-size: .9rem;
}

.apple_pagination a,
.apple_pagination span {
  padding: 0.2em 0.3em;
}

.apple_pagination .disabled {
  color: #aaaaaa;
}

.apple_pagination .current {
  font-style: normal;
  font-weight: bold;
  background-color: #bebebe;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  line-height: 1.5;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  border-radius: 1em;
  text-shadow: rgba(255, 255, 255, 0.8) 1px 1px 1px;
}

.apple_pagination a {
  text-decoration: none;
  color: black;
}

.apple_pagination a:hover,
.apple_pagination a:focus {
  text-decoration: underline;
}

.action-icons {
  display: inline-flex;
  align-items: center;
}

.action-icons form {
  display: inline-flex;
  margin: 0;
}

.action-icons a,
.action-icons button {
  color: var(--bs-body-color);
  background: transparent;
  border: 0;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}

.action-icons a:hover,
.action-icons button:hover {
  color: var(--bs-info);
}
label.asdndzone * {
  box-sizing: border-box;
}

label.asdndzone {
  box-sizing: border-box;
  display: block;
  border: 3px solid #c8ce3e;
  border-radius: 6px;
  min-height: 220px;
  max-width: 310px;
  width: 100%;
  padding: 99px 20px 20px;
  text-align: center;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 21px;
  letter-spacing: 0.6px;
}

label.asdndzone:focus-within {
  outline: 2px solid #7aacfe; /* for non-webkit browsers */
  outline: 5px auto -webkit-focus-ring-color;
}

label.asdndzone .asdndz-highlight {
  color: #8dc63f;
}

label.asdndzone .asdndz__icon-container {
  text-align: left;
}

label.asdndzone .direct-upload {
  display: inline-block;
  position: relative;
  border-radius: 10px;
  height: 18px;
  min-width: 126px;
  background-color: #f5f5f5;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3px;
  color: #212121;
  margin-top: 8px;
  padding: 5px 10px;
}

label.asdndzone .direct-upload__complete {
  background-color: #c8ce3e;
}

label.asdndzone .direct-upload__progress {
  opacity: 0.57;
  background-color: #c8ce3e;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  transition: width 120ms ease-out, opacity 60ms 60ms ease-in;
  transform: translate3d(0, 0, 0);
}

label.asdndzone .direct-upload__remove {
  display: inline-block;
  vertical-align: top;
  margin-top: 13px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  color: #212121;
}

label.asdndzone .direct-upload__filename {
  position: relative;
  max-width: 190px;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

label.asdndzone .direct-upload__filesize {
  position: relative;
  float: right;
  font-size: 10px;
  letter-spacing: 0.1px;
  color: #707e87;
  padding-left: 7px;
}

label.asdndzone .direct-upload[data-direct-upload-id='error'] {
  border: 1px solid red;
}
