:root {
  --lnx-primary: #1A5D7A;
  --lnx-secondary: #F28A30;
  --lnx-accent: #2EC4B6;
  --lnx-dark: #333F48;
  --lnx-light: #F5F7F9;
  --lnx-bg-alt: #E8ECEF;
  --lnx-alert: #D64045;
  --lnx-success: #5D9E7E;
  --lnx-transition: all 0.3s ease-in-out;
  --lnx-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  --lnx-radius: 4px;
}


body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--lnx-dark);
  background-color: var(--lnx-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.iti {
  width: 100%;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--lnx-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--lnx-primary);
  text-decoration: none;
  transition: var(--lnx-transition);
}

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


.lnx-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.lnx-section {
  padding: 4rem 0;
}

.lnx-section-alt {
  background-color: var(--lnx-bg-alt);
}

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

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

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

.lnx-divider {
  height: 2px;
  background-color: var(--lnx-accent);
  width: 60px;
  margin: 2rem 0;
}

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


.lnx-header {
  background-color: white;
  box-shadow: var(--lnx-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.lnx-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lnx-logo-link {
  display: flex;
  align-items: center;
}

.lnx-logo-img {
  height: 48px;
  width: auto;
}

.lnx-nav {
  display: flex;
  align-items: center;
}

.lnx-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lnx-nav-item {
  margin: 0 0.5rem;
}

.lnx-nav-link {
  padding: 0.5rem 0.75rem;
  display: block;
  font-weight: 500;
  position: relative;
}

.lnx-nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--lnx-secondary);
  transition: var(--lnx-transition);
}

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

.lnx-phone {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.lnx-phone i {
  margin-right: 0.5rem;
  color: var(--lnx-primary);
}


.lnx-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.lnx-menu-toggle i {
  font-size: 1.5rem;
  color: var(--lnx-primary);
}


.lnx-intro {
  background-color: var(--lnx-primary);
  color: white;
  padding: 5rem 0;
  position: relative;
}

.lnx-intro-content {
  max-width: 600px;
}

.lnx-intro h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.lnx-intro p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


.lnx-action {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--lnx-secondary);
  color: white;
  border: none;
  border-radius: var(--lnx-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--lnx-transition);
}

.lnx-action:hover, .lnx-action:focus {
  background-color: #e07920;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.lnx-action-outline {
  background-color: transparent;
  border: 2px solid var(--lnx-secondary);
  color: var(--lnx-secondary);
}

.lnx-action-outline:hover, .lnx-action-outline:focus {
  background-color: var(--lnx-secondary);
  color: white;
}


.lnx-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.lnx-card {
  background-color: white;
  border-radius: var(--lnx-radius);
  box-shadow: var(--lnx-shadow);
  overflow: hidden;
  transition: var(--lnx-transition);
}

.lnx-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.lnx-card-content {
  padding: 1.5rem;
}

.lnx-card-title {
  margin-top: 0;
}


.lnx-form-section {
  background-color: var(--lnx-light);
  border-radius: var(--lnx-radius);
  padding: 2rem;
  box-shadow: var(--lnx-shadow);
}

.lnx-form-row {
  margin-bottom: 1.5rem;
}

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

.lnx-form-input,
.lnx-form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--lnx-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--lnx-transition);
}

.lnx-form-input:focus,
.lnx-form-textarea:focus {
  border-color: var(--lnx-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 93, 122, 0.1);
}

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

.lnx-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.lnx-checkbox {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}


.lnx-footer {
  background-color: var(--lnx-dark);
  color: white;
  padding: 3rem 0;
}

.lnx-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.lnx-footer-column {
  flex: 1 1 300px;
}

.lnx-footer-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.lnx-footer-item {
  margin-bottom: 0.5rem;
}

.lnx-footer-link {
  color: #ccc;
}

.lnx-footer-link:hover, .lnx-footer-link:focus {
  color: white;
}

.lnx-footer-contact {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.lnx-footer-contact i {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
  color: var(--lnx-secondary);
}

.lnx-copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}


.lnx-calculator {
  background-color: white;
  border-radius: var(--lnx-radius);
  padding: 2rem;
  box-shadow: var(--lnx-shadow);
}

.lnx-calculator-title {
  margin-bottom: 2rem;
}

.lnx-calculator-form {
  margin-bottom: 2rem;
}

.lnx-calculator-results {
  background-color: var(--lnx-bg-alt);
  padding: 1.5rem;
  border-radius: var(--lnx-radius);
  display: none;
}

.lnx-calculator-results.visible {
  display: block;
  animation: fadeIn 0.5s;
}

.lnx-result-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}

.lnx-result-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.lnx-result-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.lnx-result-value {
  font-size: 1.25rem;
  color: var(--lnx-success);
}


.lnx-breadcrumbs {
  display: flex;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  flex-wrap: wrap;
}

.lnx-breadcrumbs-item {
  display: flex;
  align-items: center;
}

.lnx-breadcrumbs-item:not(:last-child):after {
  content: '/';
  margin: 0 0.5rem;
  color: #aaa;
}

.lnx-breadcrumbs-link {
  color: #666;
  font-size: 0.9rem;
}

.lnx-breadcrumbs-current {
  color: var(--lnx-dark);
  font-weight: 500;
  font-size: 0.9rem;
}


.lnx-process-list {
  counter-reset: process;
  list-style: none;
  padding: 0;
}

.lnx-process-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
  counter-increment: process;
}

.lnx-process-item:before {
  content: counter(process);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background-color: var(--lnx-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.lnx-process-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}


.lnx-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.lnx-advantage {
  background-color: white;
  padding: 2rem;
  border-radius: var(--lnx-radius);
  box-shadow: var(--lnx-shadow);
  transition: var(--lnx-transition);
}

.lnx-advantage:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.lnx-advantage-icon {
  width: 60px;
  height: 60px;
  background-color: var(--lnx-bg-alt);
  color: var(--lnx-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.lnx-advantage-icon i {
  font-size: 1.5rem;
}

.lnx-advantage-title {
  margin-top: 0;
}


.lnx-faq {
  margin-bottom: 2rem;
}

.lnx-faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.lnx-faq-question {
  font-weight: 500;
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lnx-faq-question i {
  transition: var(--lnx-transition);
}

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

.lnx-faq-answer {
  display: none;
  padding-top: 0.5rem;
}

.lnx-faq-answer.visible {
  display: block;
}


.lnx-quiz {
  background-color: white;
  border-radius: var(--lnx-radius);
  padding: 2rem;
  box-shadow: var(--lnx-shadow);
}

.lnx-quiz-question {
  margin-bottom: 2rem;
}

.lnx-quiz-options {
  list-style: none;
  padding: 0;
}

.lnx-quiz-option {
  margin-bottom: 0.75rem;
}

.lnx-quiz-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.lnx-quiz-radio {
  margin-right: 0.75rem;
}

.lnx-quiz-results {
  background-color: var(--lnx-bg-alt);
  padding: 1.5rem;
  border-radius: var(--lnx-radius);
  margin-top: 2rem;
  display: none;
}

.lnx-quiz-results.visible {
  display: block;
  animation: fadeIn 0.5s;
}

.lnx-result-level {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}


.lnx-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lnx-modal-backdrop.visible {
  opacity: 1;
  visibility: visible;
}

.lnx-modal {
  background-color: white;
  border-radius: var(--lnx-radius);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lnx-modal-backdrop.visible .lnx-modal {
  transform: translateY(0);
  opacity: 1;
}

.lnx-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #aaa;
  transition: color 0.3s ease;
}

.lnx-modal-close:hover {
  color: var(--lnx-dark);
}

.lnx-modal-title {
  margin-top: 0;
  padding-right: 2rem;
}


.lnx-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.lnx-cookie-banner.visible {
  transform: translateY(0);
}

.lnx-cookie-text {
  flex: 1;
  margin-right: 1rem;
}

.lnx-cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.lnx-cookie-settings-btn {
  background: none;
  border: 1px solid #ddd;
  border-radius: var(--lnx-radius);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: var(--lnx-transition);
}

.lnx-cookie-settings-btn:hover {
  background-color: var(--lnx-bg-alt);
}

.lnx-cookie-accept-btn {
  background-color: var(--lnx-success);
  color: white;
  border: none;
  border-radius: var(--lnx-radius);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: var(--lnx-transition);
}

.lnx-cookie-accept-btn:hover {
  background-color: #4c8d6e;
}

.lnx-cookie-settings-icon {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 899;
  transition: var(--lnx-transition);
  opacity: 0;
  visibility: hidden;
}

.lnx-cookie-settings-icon.visible {
  opacity: 1;
  visibility: visible;
}

.lnx-cookie-settings-icon:hover {
  transform: scale(1.1);
}

.lnx-cookie-modal {
  max-width: 600px;
}

.lnx-cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.lnx-cookie-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lnx-cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.lnx-cookie-category-title {
  margin: 0;
  font-size: 1.2rem;
}

.lnx-cookie-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.lnx-cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

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

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

input:checked + .lnx-cookie-slider {
  background-color: var(--lnx-success);
}

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

input:checked + .lnx-cookie-slider:before {
  transform: translateX(24px);
}

.lnx-cookie-save {
  display: block;
  width: 100%;
  margin-top: 1rem;
}


@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}


@media (max-width: 991px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .lnx-section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .lnx-menu-toggle {
    display: block;
  }
  
  .lnx-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 200;
  }
  
  .lnx-nav.active {
    transform: translateX(0);
  }
  
  .lnx-nav-list {
    flex-direction: column;
    align-items: center;
  }
  
  .lnx-nav-item {
    margin: 0.75rem 0;
  }
  
  .lnx-nav-link {
    font-size: 1.2rem;
  }
  
  .lnx-phone {
    margin: 1.5rem 0 0 0;
  }
  
  .lnx-close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .lnx-footer-inner {
    flex-direction: column;
  }
  
  .lnx-cookie-banner {
    flex-direction: column;
    padding: 1rem;
  }
  
  .lnx-cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .lnx-cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .lnx-section {
    padding: 2rem 0;
  }
  
  .lnx-card-grid,
  .lnx-advantages-grid {
    grid-template-columns: 1fr;
  }
}