
:root {
  --primary: #121212;
  --secondary: #1E1E1E;
  --accent: #00C2FF;
  --accent-secondary: #FF6B00;
  --text: #FFFFFF;
  --text-secondary: #BBBBBB;
  --success: #00E676;
  --error: #FF5252;
  --border: #2A2A2A;
  --card-bg: #1A1A1A;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--primary);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-top: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-secondary);
}

.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-secondary {
  background-color: var(--accent-secondary);
  color: #000;
}

.btn-secondary:hover {
  background-color: transparent;
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: #000;
}


.header {
  background-color: var(--secondary);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
  height: 40px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

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

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

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-link:hover {
  color: var(--accent);
}

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

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


.hero {
  padding: 10rem 0 5rem;
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}


.form-section {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.form-title {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.2);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-check-input {
  margin-top: 0.3rem;
  margin-right: 0.5rem;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-submit {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
}


.services {
  padding: 5rem 0;
  background-color: var(--primary);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.section-subtitle {
  text-align: center;
  margin: -2rem auto 3rem;
  max-width: 800px;
  color: var(--text-secondary);
}

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

.service-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

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

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


.benefits {
  padding: 5rem 0;
  background-color: var(--secondary);
}

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

.benefit-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.benefit-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.benefit-metric {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1rem 0;
}


.process {
  padding: 5rem 0;
  background-color: var(--primary);
}

.process-steps {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--border);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:nth-child(odd) {
  flex-direction: row-reverse;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-content {
  width: calc(50% - 30px);
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.process-number {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  transform: translateY(-50%);
  z-index: 2;
}

.process-step:nth-child(odd) .process-number {
  left: -30px;
}

.process-step:nth-child(even) .process-number {
  right: -30px;
}

.process-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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


.technologies {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tech-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.tech-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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


.faq {
  padding: 5rem 0;
  background-color: var(--primary);
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--card-bg);
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  color: var(--text);
}

.accordion-header::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

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


.support-services {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.service-levels {
  padding: 5rem 0;
  background-color: var(--primary);
}

.level-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.level-table th,
.level-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.level-table th {
  font-weight: 500;
  color: var(--accent);
}

.monitoring {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.training {
  padding: 5rem 0;
  background-color: var(--primary);
}


.why-us-intro {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.trust-points {
  padding: 5rem 0;
  background-color: var(--primary);
}

.methodology {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.business-effects {
  padding: 5rem 0;
  background-color: var(--primary);
}


.security-intro {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.security-measures {
  padding: 5rem 0;
  background-color: var(--primary);
}

.security-articles {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.article-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.article-summary {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}


.article {
  padding: 10rem 0 5rem;
  background-color: var(--primary);
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 3rem;
}

.article-content {
  line-height: 1.8;
}

.article-content h2 {
  margin: 2.5rem 0 1.5rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}


.contact {
  padding: 10rem 0 5rem;
  background-color: var(--primary);
}

.contact-info {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 1rem;
  min-width: 30px;
}

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

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.thanks {
  padding: 12rem 0;
  text-align: center;
  background-color: var(--primary);
}

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

.thanks-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thanks-message {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}


.legal {
  padding: 10rem 0 5rem;
  background-color: var(--primary);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 3rem;
}

.legal-date {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  margin: 2.5rem 0 1.5rem;
  font-size: 1.8rem;
}

.legal-content h3 {
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}


.footer {
  background-color: var(--secondary);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-info {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-link a:hover {
  color: var(--accent);
}

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

.footer-contact-icon {
  color: var(--accent);
  margin-right: 1rem;
  min-width: 20px;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary);
  padding: 1.5rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-text {
  margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-settings.show {
  display: flex;
}

.cookie-settings-container {
  background-color: var(--secondary);
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

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

.cookie-settings-title {
  font-size: 1.5rem;
  margin: 0;
}

.cookie-settings-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 1.5rem;
}

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

.cookie-category-title {
  font-weight: 500;
  margin: 0;
}

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

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border);
  transition: .4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

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

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

.cookie-category-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cookie-settings-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}


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

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--secondary);
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-icon {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.modal-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-buttons {
  display: flex;
  justify-content: center;
}


@media (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .process-steps::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: row !important;
  }
  
  .process-content {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
  
  .process-number {
    left: 0 !important;
    right: auto !important;
  }
}

@media (max-width: 767.98px) {
  .nav-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--secondary);
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
  }
  
  .nav.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-item {
    margin: 0.5rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}