
:root {
  --primary-bg: #121212;
  --secondary-bg: #1E1E1E;
  --card-bg: #242424;
  --primary-text: #EFEFEF;
  --secondary-text: #AAAAAA;
  --primary-accent: #2D5BFF;
  --secondary-accent: #3CAEA3;
  --highlight: #F2C94C;
  --error: #E74C3C;
  --success: #27AE60;
  --shadow-soft: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-hard: 0 12px 24px rgba(0, 0, 0, 0.4);
  --transition-fast: 0.2s ease;
  --transition-standard: 0.3s ease;
  --border-radius: 8px;
}


body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-text);
  background-color: var(--primary-bg);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
  color: var(--primary-text);
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--secondary-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover, a:focus {
  color: var(--primary-accent);
  text-decoration: underline;
}

.lp-fine-print {
  font-size: 0.85rem;
  color: var(--secondary-text);
}


.lp-page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.lp-content-wrapper {
  flex: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-overlay-section {
  position: relative;
  padding: 60px 0;
  margin-top: -30px;
  z-index: 1;
}

.lp-overlay-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-bg);
  transform: skewY(-3deg);
  transform-origin: top left;
  z-index: -1;
  box-shadow: var(--shadow-soft);
}

.lp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.lp-col-12 { grid-column: span 12; }
.lp-col-8 { grid-column: span 8; }
.lp-col-6 { grid-column: span 6; }
.lp-col-4 { grid-column: span 4; }
.lp-col-3 { grid-column: span 3; }

@media (max-width: 992px) {
  .lp-col-md-12 { grid-column: span 12; }
  .lp-col-md-6 { grid-column: span 6; }
}

@media (max-width: 768px) {
  .lp-col-sm-12 { grid-column: span 12; }
  .lp-grid {
    gap: 20px;
  }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
}


.lp-header {
  background-color: var(--secondary-bg);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-standard);
}

.lp-header.headroom--unpinned {
  transform: translateY(-100%);
}

.lp-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-logo {
  height: 40px;
  width: auto;
}

.lp-nav {
  display: flex;
  gap: 24px;
}

.lp-nav-link {
  color: var(--primary-text);
  font-weight: 600;
  position: relative;
}

.lp-nav-link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-accent);
  transition: width var(--transition-standard);
}

.lp-nav-link:hover:after,
.lp-nav-link:focus:after,
.lp-nav-link.lp-active:after {
  width: 100%;
}

.lp-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.lp-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--highlight);
  font-weight: 600;
}

.lp-phone-link i {
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .lp-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--secondary-bg);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-200%);
    transition: transform var(--transition-standard);
    z-index: 999;
  }
  
  .lp-nav.lp-active {
    transform: translateY(0);
  }
  
  .lp-mobile-menu-btn {
    display: block;
  }
}


.lp-hero {
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.lp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.5) saturate(0.8);
}

.lp-hero-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.9));
}

.lp-hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
  margin-bottom: 60px;
}

.lp-hero-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
}

.lp-cta-button {
  display: inline-block;
  background-color: var(--primary-accent);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  transition: all var(--transition-standard);
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lp-cta-button:hover, 
.lp-cta-button:focus {
  background-color: var(--secondary-accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}


.lp-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  height: fit-content;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-standard), box-shadow var(--transition-standard);
  box-shadow: var(--shadow-soft);
}

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

.lp-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-accent);
}

.lp-card-icon {
  font-size: 2.5rem;
  color: var(--secondary-accent);
  margin-bottom: 1.5rem;
}

.lp-card-title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.lp-more-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
}


.lp-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.lp-feature-icon {
  font-size: 2rem;
  color: var(--primary-accent);
  flex-shrink: 0;
}

.lp-feature-content {
  flex: 1;
}

.lp-feature-title {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}


.lp-process {
  position: relative;
  counter-reset: process-counter;
}

.lp-process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
  counter-increment: process-counter;
}

.lp-process-step:before {
  content: counter(process-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.lp-process-step:after {
  content: "";
  position: absolute;
  top: 60px;
  left: 30px;
  width: 2px;
  height: calc(100% - 30px);
  background-color: var(--secondary-accent);
  opacity: 0.3;
}

.lp-process-step:last-child:after {
  display: none;
}

.lp-process-title {
  margin-bottom: 0.5rem;
}


.lp-faq {
  margin-bottom: 60px;
}

.lp-faq-item {
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.lp-faq-question {
  background-color: var(--card-bg);
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.lp-faq-question:hover {
  background-color: rgba(45, 91, 255, 0.1);
}

.lp-faq-question i {
  transition: transform var(--transition-fast);
}

.lp-faq-question.lp-active i {
  transform: rotate(180deg);
}

.lp-faq-answer {
  background-color: var(--secondary-bg);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-standard), padding var(--transition-standard);
}

.lp-faq-answer.lp-active {
  max-height: 1000px;
  padding: 20px;
}


.lp-form {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.lp-form-title {
  margin-bottom: 1.5rem;
}

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

.lp-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.lp-form-input,
.lp-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--border-radius);
  border: 1px solid #333333;
  background-color: var(--secondary-bg);
  color: var(--primary-text);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.lp-form-input:focus,
.lp-form-textarea:focus {
  outline: none;
  border-color: var(--primary-accent);
}

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

.lp-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.lp-form-checkbox input {
  margin-top: 5px;
}


.lp-footer {
  background-color: var(--secondary-bg);
  padding: 60px 0 30px;
  margin-top: 60px;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.lp-footer-col {
  margin-bottom: 30px;
}

.lp-footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.lp-footer-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-accent);
}

.lp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-footer-link {
  margin-bottom: 0.8rem;
}

.lp-footer-address {
  margin-bottom: 1rem;
}

.lp-footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}

.lp-footer-contact i {
  color: var(--primary-accent);
}

.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-copyright {
  color: var(--secondary-text);
}

.lp-footer-legal {
  display: flex;
  gap: 16px;
}

@media (max-width: 992px) {
  .lp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .lp-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .lp-footer-legal {
    flex-direction: column;
    gap: 8px;
  }
}


.lp-service {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-soft);
}

.lp-service-header {
  background-color: rgba(45, 91, 255, 0.1);
  padding: 24px;
  border-bottom: 1px solid rgba(45, 91, 255, 0.2);
}

.lp-service-title {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.lp-service-content {
  padding: 24px;
}

.lp-service-list {
  margin: 1rem 0;
  padding-left: 20px;
}

.lp-service-list li {
  margin-bottom: 0.5rem;
}

.lp-service-meta {
  display: flex;
  gap: 30px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-service-meta-item {
  display: flex;
  flex-direction: column;
}

.lp-service-meta-label {
  font-size: 0.85rem;
  color: var(--secondary-text);
  margin-bottom: 0.3rem;
}

.lp-service-meta-value {
  font-weight: 600;
}

.lp-service-cta {
  margin-top: 1.5rem;
}


.lp-contact-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-soft);
}

.lp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.2rem;
}

.lp-contact-icon {
  font-size: 1.2rem;
  color: var(--primary-accent);
  margin-top: 4px;
}

.lp-contact-content {
  flex: 1;
}

.lp-contact-label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}


.lp-map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; 
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.lp-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.lp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-standard), visibility var(--transition-standard);
}

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

.lp-modal {
  background-color: var(--secondary-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  max-width: 500px;
  width: 90%;
  transform: translateY(30px);
  transition: transform var(--transition-standard);
  box-shadow: var(--shadow-hard);
}

.lp-modal-overlay.lp-active .lp-modal {
  transform: translateY(0);
}

.lp-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.lp-modal-title {
  margin-bottom: 0;
}

.lp-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary-text);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lp-modal-close:hover {
  color: var(--primary-text);
}

.lp-modal-body {
  margin-bottom: 1.5rem;
}

.lp-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}


.lp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-bg);
  padding: 20px;
  z-index: 1500;
  box-shadow: var(--shadow-hard);
  transform: translateY(100%);
  transition: transform var(--transition-standard);
}

.lp-cookie-banner.lp-active {
  transform: translateY(0);
}

.lp-cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.lp-cookie-text {
  flex: 1;
}

.lp-cookie-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.lp-cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-cookie-button {
  padding: 10px 16px;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lp-cookie-accept-all {
  background-color: var(--primary-accent);
  color: #ffffff;
}

.lp-cookie-accept-all:hover {
  background-color: var(--secondary-accent);
}

.lp-cookie-reject {
  background-color: transparent;
  border: 1px solid var(--secondary-text);
  color: var(--primary-text);
}

.lp-cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.lp-cookie-settings {
  background-color: transparent;
  color: var(--secondary-accent);
}

.lp-cookie-settings:hover {
  color: var(--primary-accent);
}

.lp-cookie-preferences {
  padding: 30px;
}

.lp-cookie-group {
  margin-bottom: 20px;
}

.lp-cookie-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.lp-cookie-group-title {
  font-weight: 600;
  margin-bottom: 0;
}

.lp-cookie-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.lp-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.lp-cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #555;
  transition: var(--transition-fast);
  border-radius: 24px;
}

.lp-cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--transition-fast);
  border-radius: 50%;
}

.lp-cookie-toggle input:checked + .lp-cookie-toggle-slider {
  background-color: var(--secondary-accent);
}

.lp-cookie-toggle input:checked + .lp-cookie-toggle-slider:before {
  transform: translateX(22px);
}

.lp-cookie-toggle input:disabled + .lp-cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.lp-cookie-change {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--card-bg);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  z-index: 1000;
  transition: all var(--transition-fast);
}

.lp-cookie-change:hover {
  box-shadow: var(--shadow-hard);
  transform: translateY(-2px);
}

.lp-cookie-change i {
  color: var(--primary-accent);
  font-size: 1.2rem;
}

.iti {
  width: 100%;
}

@media (max-width: 768px) {
  .lp-cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .lp-cookie-actions {
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
  }
  
  .lp-cookie-button {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }
}


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

.lp-text-accent {
  color: var(--primary-accent);
}

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

.lp-margin-bottom {
  margin-bottom: 3rem;
}

.lp-hide {
  display: none !important;
}


.lp-spacer-sm {
  height: 30px;
}

.lp-spacer-md {
  height: 60px;
}

.lp-spacer-lg {
  height: 90px;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-fade-in {
  animation: fadeIn 0.8s ease forwards;
}


.lp-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 60px 20px;
}

.lp-thanks-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.lp-thanks-title {
  margin-bottom: 1rem;
}

.lp-thanks-text {
  max-width: 600px;
  margin: 0 auto 2rem;
}