@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes gradientShift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(5%, -5%) rotate(5deg);
  }
  66% {
    transform: translate(-5%, 5%) rotate(-5deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lpSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --primary-blue: #3B82F6;
  --accent-green: #22C55E;
  --text-light: #E5E7EB;
  --bg-dark: #0F1419;
  --bg-darker: #0A0E13;
  --bg-card: #1A1F29;
  --text-muted: #9CA3AF;
  --border-color: rgba(59, 130, 246, 0.1);
  --warning-yellow: #F59E0B;
  --error-red: #EF4444;
  --sidebar-width: 280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(59, 130, 246, 0.1) #0A0E13;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-track {
  background: #0A0E13;
}
*::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #3B82F6;
}

body {
  height: 100vh;
  font-family: "Archivo", sans-serif;
  background: #0F1419 !important;
  color: #E5E7EB !important;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  height: 100vh;
  background-image: linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 197, 94, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

body.landing {
  height: auto;
  min-height: 100vh;
  padding-top: 65px;
}
@media (max-width: 620px) {
  body.landing {
    padding-top: 120px;
  }
}
body.landing main {
  margin-left: 0;
  min-height: unset;
  overflow: visible;
}

body.landing::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  animation: gradientShift 20s ease infinite;
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  overflow: visible;
  margin-left: 280px;
  min-height: 100vh;
  justify-content: flex-end;
  align-self: flex-end;
}

a {
  text-decoration: none;
  color: #3B82F6;
  transition: color 0.3s ease;
}
a:hover {
  color: #2563EB;
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  opacity: 0;
  background: linear-gradient(90deg, transparent 0%, #3B82F6 50%, transparent 100%);
  background-size: 200% 100%;
  transition: opacity 100ms ease;
  pointer-events: none;
}
#page-loader.htmx-request {
  opacity: 1;
  animation: page-loading 1.2s linear infinite;
}

@keyframes page-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.lp-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: #3B82F6;
}

.lp-badge-green {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22C55E;
}

.lp-section-header {
  margin-bottom: 4rem;
}
.lp-section-header h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  color: #E5E7EB;
  margin-bottom: 1rem;
}

.lp-section-subtitle {
  font-size: 1.1rem;
  color: #9CA3AF;
  max-width: 580px;
  line-height: 1.7;
}

.lp-link-primary {
  color: #3B82F6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.lp-link-primary:hover {
  color: #2563EB;
}

body.landing .btn-outline-secondary {
  color: #E5E7EB;
  border-color: rgba(229, 231, 235, 0.25);
}
body.landing .btn-outline-secondary:hover, body.landing .btn-outline-secondary:focus {
  color: #E5E7EB;
  background: rgba(59, 130, 246, 0.1);
  border-color: #3B82F6;
  box-shadow: none;
}
body.landing .btn-primary {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
body.landing .btn-primary:hover {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 620px) {
  .lp-navbar > .container-xxl {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 0.625rem;
  }
  .lp-navbar .navbar-brand {
    flex: 0 0 100%;
    text-align: center;
  }
}
.lp-navbar {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 14, 19, 0.88) !important;
  animation: lpSlideDown 0.5s ease-out;
}
.lp-navbar .navbar-brand {
  padding: 0;
}
.lp-navbar .navbar-brand svg {
  height: 32px;
  width: auto;
}
.lp-navbar .btn {
  padding: 0.55rem 1.25rem;
}
.lp-navbar .lp-nav-links .nav-link {
  color: #9CA3AF;
  font-weight: 500;
  font-size: 0.925rem;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.875rem;
  position: relative;
  transition: color 0.3s ease;
}
.lp-navbar .lp-nav-links .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0.2rem;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: #22C55E;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.lp-navbar .lp-nav-links .nav-link:hover {
  color: #E5E7EB;
}
.lp-navbar .lp-nav-links .nav-link:hover::after {
  transform: scaleX(1);
}

.lp-hero {
  padding: 7rem 0 5rem;
  position: relative;
  animation: fadeInUp 0.7s ease-out 0.15s both;
}
.lp-hero__title {
  font-size: clamp(2.375rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #E5E7EB 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #9CA3AF;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.lp-stat-card {
  background: #1A1F29;
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  color: #E5E7EB;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  padding: 2.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.lp-stat-card h1,
.lp-stat-card h2,
.lp-stat-card h3,
.lp-stat-card h4,
.lp-stat-card h5 {
  margin-bottom: 0;
}
.lp-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3B82F6, transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.lp-stat-card:hover {
  border-color: #3B82F6;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}
.lp-stat-card:hover::before {
  transform: translateX(100%);
}
.lp-stat-card__number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #22C55E;
  font-family: "JetBrains Mono", monospace;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.lp-stat-card__label {
  color: #9CA3AF;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0;
}

.lp-features {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.025) 50%, transparent 100%);
}

.lp-feature-card {
  background: #1A1F29;
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  color: #E5E7EB;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  padding: 2.5rem;
  height: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.lp-feature-card h1,
.lp-feature-card h2,
.lp-feature-card h3,
.lp-feature-card h4,
.lp-feature-card h5 {
  margin-bottom: 0;
}
.lp-feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lp-feature-card:hover {
  border-color: #3B82F6;
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
}
.lp-feature-card:hover::before {
  opacity: 1;
}
.lp-feature-card:hover .lp-feature-icon {
  background: #3B82F6;
  border-color: #3B82F6;
  transform: scale(1.1) rotate(5deg);
}
.lp-feature-card:hover .lp-feature-icon i {
  color: white;
}

.lp-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.lp-feature-icon i {
  color: #3B82F6;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.lp-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #E5E7EB;
  margin-bottom: 0.75rem;
}

.lp-feature-desc {
  color: #9CA3AF;
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.lp-code-block {
  background: #0A0E13;
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 4rem;
}
.lp-code-block__content h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #E5E7EB;
  margin-bottom: 1rem;
}
.lp-code-block__content p {
  color: #9CA3AF;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.lp-code-block__demo {
  background: #1A1F29;
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  padding: 2rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.8;
  overflow-x: auto;
  position: relative;
  color: #E5E7EB;
}
.lp-code-block__demo code {
  color: #E5E7EB;
}
.lp-code-block__demo::after {
  content: "{ }";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #3B82F6;
  font-size: 1.1rem;
  opacity: 0.3;
  font-family: "JetBrains Mono", monospace;
}

.code-comment {
  color: #6B7280;
  display: block;
}

.code-line {
  display: block;
}

.code-keyword {
  color: #3B82F6;
}

.code-string {
  color: #22C55E;
}

.code-number {
  color: #F59E0B;
}

.lp-pricing {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.03) 50%, transparent 100%);
}

.lp-pricing-card {
  background: #1A1F29;
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  color: #E5E7EB;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 2.75rem;
  border-width: 2px;
  border-radius: 24px;
  width: 100%;
}
.lp-pricing-card h1,
.lp-pricing-card h2,
.lp-pricing-card h3,
.lp-pricing-card h4,
.lp-pricing-card h5 {
  margin-bottom: 0;
}
.lp-pricing-card:hover {
  border-color: #3B82F6;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}
.lp-pricing-card--featured {
  border-color: #3B82F6;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
  position: relative;
}
.lp-pricing-card--featured::before {
  content: "NAJPOPULARNIEJSZY";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #3B82F6;
  color: white;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}
.lp-pricing-card--featured:hover {
  transform: translateY(-12px);
}

.lp-pricing-plan {
  font-size: 0.78rem;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  font-family: "JetBrains Mono", monospace;
}

.lp-pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: #E5E7EB;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.lp-pricing-price span {
  font-size: 1.05rem;
  color: #9CA3AF;
  font-weight: 500;
}

.lp-pricing-desc {
  color: #9CA3AF;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.lp-pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.lp-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: #9CA3AF;
  font-size: 0.9rem;
}
.lp-pricing-features li:not(:last-child) {
  border-bottom: 1px solid rgba(59, 130, 246, 0.6);
}
.lp-pricing-features li i {
  color: #22C55E;
  font-size: 1rem;
  flex-shrink: 0;
}

.lp-about {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.02) 50%, transparent 100%);
}

.lp-about-story h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #E5E7EB;
  margin-bottom: 1.5rem;
}
.lp-about-story p {
  color: #9CA3AF;
  font-size: 1.025rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.lp-about-story p:last-child {
  margin-bottom: 0;
}

.lp-stat-card-lg {
  background: #1A1F29;
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  color: #E5E7EB;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.lp-stat-card-lg h1,
.lp-stat-card-lg h2,
.lp-stat-card-lg h3,
.lp-stat-card-lg h4,
.lp-stat-card-lg h5 {
  margin-bottom: 0;
}
.lp-stat-card-lg:hover {
  border-color: #3B82F6;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}
.lp-stat-card-lg__icon {
  font-size: 1.75rem;
  color: #3B82F6;
  margin-bottom: 0.5rem;
}
.lp-stat-card-lg__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3B82F6;
  font-family: "JetBrains Mono", monospace;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.lp-stat-card-lg__label {
  color: #9CA3AF;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0;
}

.lp-team-card {
  background: #1A1F29;
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  color: #E5E7EB;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  padding: 2.5rem 1.75rem;
  text-align: center;
}
.lp-team-card h1,
.lp-team-card h2,
.lp-team-card h3,
.lp-team-card h4,
.lp-team-card h5 {
  margin-bottom: 0;
}
.lp-team-card:hover {
  border-color: #3B82F6;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}
.lp-team-card__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #22C55E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1.25rem;
  flex-shrink: 0;
}
.lp-team-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #E5E7EB;
  margin-bottom: 0.3rem;
}
.lp-team-card__role {
  color: #3B82F6;
  font-weight: 600;
  font-size: 0.825rem;
  margin-bottom: 0.875rem;
}
.lp-team-card__bio {
  color: #9CA3AF;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.lp-team-card__socials {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
}
.lp-team-card__socials a {
  color: #9CA3AF;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.lp-team-card__socials a:hover {
  color: #3B82F6;
}

.lp-value-card {
  background: #1A1F29;
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  color: #E5E7EB;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  padding: 2.5rem;
}
.lp-value-card h1,
.lp-value-card h2,
.lp-value-card h3,
.lp-value-card h4,
.lp-value-card h5 {
  margin-bottom: 0;
}
.lp-value-card:hover {
  border-color: #3B82F6;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}
.lp-value-card__icon {
  font-size: 1.875rem;
  color: #3B82F6;
  margin-bottom: 1rem;
}
.lp-value-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #E5E7EB;
  margin-bottom: 0.75rem;
}
.lp-value-card p {
  color: #9CA3AF;
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.lp-contact {
  padding: 6rem 0;
  position: relative;
}

.lp-contact-form-wrap {
  background: #1A1F29;
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  color: #E5E7EB;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  padding: 2.5rem;
  border-radius: 20px;
}
.lp-contact-form-wrap h1,
.lp-contact-form-wrap h2,
.lp-contact-form-wrap h3,
.lp-contact-form-wrap h4,
.lp-contact-form-wrap h5 {
  margin-bottom: 0;
}
.lp-contact-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E5E7EB;
  margin-bottom: 1.75rem;
}

.lp-contact-label {
  display: block;
  margin-bottom: 0.45rem;
  color: #E5E7EB;
  font-weight: 600;
  font-size: 0.875rem;
}

.lp-contact-input {
  display: block;
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: #0A0E13;
  border: 2px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  color: #E5E7EB;
  font-family: "Archivo", sans-serif;
  font-size: 0.925rem;
  transition: all 0.3s ease;
  appearance: none;
}
.lp-contact-input::placeholder {
  color: rgba(156, 163, 175, 0.55);
}
.lp-contact-input:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.lp-contact-input option {
  background: #1A1F29;
  color: #E5E7EB;
}

textarea.lp-contact-input {
  resize: vertical;
  min-height: 130px;
}

.lp-contact-card {
  background: #1A1F29;
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  color: #E5E7EB;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  padding: 1.5rem;
  border-radius: 12px;
}
.lp-contact-card h1,
.lp-contact-card h2,
.lp-contact-card h3,
.lp-contact-card h4,
.lp-contact-card h5 {
  margin-bottom: 0;
}
.lp-contact-card:hover {
  border-color: #3B82F6;
  transform: translateX(5px);
}
.lp-contact-card__icon {
  font-size: 1.5rem;
  color: #3B82F6;
  margin-bottom: 0.625rem;
}
.lp-contact-card h4 {
  font-size: 0.975rem;
  font-weight: 700;
  color: #E5E7EB;
  margin-bottom: 0.3rem;
}
.lp-contact-card p {
  color: #9CA3AF;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.lp-contact-card p:last-child {
  margin-bottom: 0;
}
.lp-contact-card a {
  color: #3B82F6;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.lp-contact-card a:hover {
  color: #2563EB;
}

.lp-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0A0E13;
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  color: #9CA3AF;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.lp-social-icon:hover {
  border-color: #3B82F6;
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
  transform: translateY(-3px);
}

.lp-faq-item {
  background: #1A1F29;
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  color: #E5E7EB;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  padding: 1.75rem;
  border-radius: 12px;
  width: 100%;
}
.lp-faq-item h1,
.lp-faq-item h2,
.lp-faq-item h3,
.lp-faq-item h4,
.lp-faq-item h5 {
  margin-bottom: 0;
}
.lp-faq-item:hover {
  border-color: #3B82F6;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}
.lp-faq-item h4 {
  font-size: 0.975rem;
  font-weight: 700;
  color: #E5E7EB;
  margin-bottom: 0.75rem;
}
.lp-faq-item p {
  color: #9CA3AF;
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.lp-footer {
  background: #0A0E13;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}
.lp-footer__brand svg {
  height: 30px;
  width: auto;
}
.lp-footer__brand p {
  color: #9CA3AF;
  margin-top: 1.25rem;
  line-height: 1.7;
  font-size: 0.9rem;
  max-width: 290px;
}
.lp-footer__links-title {
  color: #E5E7EB;
  font-size: 0.925rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.lp-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-footer__links li {
  margin-bottom: 0.6rem;
}
.lp-footer__links a {
  color: #9CA3AF;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.lp-footer__links a:hover {
  color: #3B82F6;
}
.lp-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  color: #9CA3AF;
  font-size: 0.875rem;
}
.lp-footer__social {
  display: flex;
  gap: 1.25rem;
}
.lp-footer__social a {
  color: #9CA3AF;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.lp-footer__social a:hover {
  color: #3B82F6;
}