
:root {
  --bg-primary: #121212;
  --bg-secondary: #1E1E1E;
  --accent: #7B68EE;
  --accent-light: #9370DB;
  --text-primary: #E0E0E0;
  --text-secondary: #B0B0B0;
  --border: #3D3D3D;
  --form-bg: #2D2D2D;
  --warning: #F0C040;
  --success: #4CAF50;
  --error: #F44336;
  --transition: all 0.3s ease;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

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

button, .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

button:hover, .btn:hover {
  background-color: var(--accent-light);
  text-decoration: none;
  color: white;
}

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

.btn-secondary:hover {
  background-color: rgba(123, 104, 238, 0.1);
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-description {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

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

.nav-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent);
  transition: var(--transition);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin-bottom: 5px;
  border-radius: 3px;
  transition: var(--transition);
}


.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 70px;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(18, 18, 18, 0.9) 30%, rgba(18, 18, 18, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-benefits {
  display: flex;
  margin-bottom: 30px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.hero-benefit i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-right: 10px;
}


.services {
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 15px;
}

.service-content p {
  margin-bottom: 20px;
}


.process {
  position: relative;
}

.process-image {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-content {
  position: relative;
  width: calc(50% - 30px);
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
}

.timeline-date {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}


.legal-guarantees {
  background-color: var(--bg-secondary);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.guarantee-item {
  background-color: var(--bg-primary);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.guarantee-item:hover {
  transform: translateY(-5px);
}

.guarantee-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.guarantee-item h3 {
  margin-bottom: 15px;
}


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

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.faq-question {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h3 {
  margin-bottom: 0;
  font-weight: 600;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 0 20px;
}

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

.faq-item.active .faq-answer {
  max-height: 1000px;
}


.cta {
  background-color: var(--bg-secondary);
  text-align: center;
  padding: 60px 0;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
}


.contact-form-section {
  padding: 80px 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--bg-secondary);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--form-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: 'Source Sans 3', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
}

.form-check input {
  margin-top: 5px;
  margin-right: 10px;
}

.form-check label {
  font-weight: 400;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}


.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  background-color: var(--bg-secondary);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 15px;
}

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


.pricing-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-table {
  background-color: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pricing-table:hover {
  transform: translateY(-10px);
}

.pricing-header {
  background-color: var(--accent);
  padding: 25px;
  text-align: center;
}

.pricing-header h3 {
  color: white;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.pricing-features {
  padding: 25px;
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 25px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--accent);
  margin-right: 10px;
}

.pricing-footer {
  padding: 0 25px 25px;
  text-align: center;
}


.calculator {
  background-color: var(--bg-secondary);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.calculator-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  object-fit: cover;
}

.calculator-content {
  position: relative;
  z-index: 1;
}

.calculator-title {
  text-align: center;
  margin-bottom: 30px;
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.calculator-form .form-group {
  margin-bottom: 0;
}

.calculator-result {
  background-color: var(--bg-primary);
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
}

.result-title {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 15px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.result-item:last-child {
  border-bottom: none;
}

.result-actions {
  text-align: center;
  margin-top: 20px;
}


.work-process {
  margin-bottom: 50px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.step-item {
  background-color: var(--bg-secondary);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.step-item h3 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.document-flow {
  margin-top: 80px;
}

.document-flow-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.policy-list {
  background-color: var(--bg-secondary);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy-list h3 {
  margin-bottom: 20px;
}

.policy-list ul {
  list-style: none;
}

.policy-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list i {
  color: var(--accent);
  margin-right: 10px;
}


.footer {
  background-color: var(--bg-secondary);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h3 {
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-contact h3, .footer-links h3 {
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 15px;
}

.contact-info-item i {
  color: var(--accent);
  margin-right: 10px;
  margin-top: 5px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}


.modal {
  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: all 0.3s ease;
}

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

.modal-content {
  background-color: var(--bg-primary);
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow);
  position: relative;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
}

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

.modal-title {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.modal-footer {
  margin-top: 30px;
  text-align: center;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-secondary);
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  display: none;
}

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

.cookie-text {
  flex: 1;
  margin-right: 20px;
}

.cookie-text p {
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-settings-modal .modal-content {
  max-width: 700px;
}

.cookie-categories {
  margin-bottom: 30px;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

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

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

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

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

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

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-primary);
  transition: .4s;
  border-radius: 50%;
}

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

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

.category-description {
  margin-bottom: 0;
}


.thanks-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.thanks-content {
  max-width: 700px;
  padding: 40px;
  background-color: var(--bg-secondary);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.thanks-content h1 {
  margin-bottom: 20px;
}

.thanks-content p {
  margin-bottom: 30px;
}


.policy-page {
  max-width: 800px;
  margin: 0 auto;
}

.policy-date {
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-style: italic;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  margin-bottom: 20px;
}

.policy-section h3 {
  margin-bottom: 15px;
}

.policy-section p {
  margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}


.page-header {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-bottom: 60px;
}

.page-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.7);
}

.page-title {
  position: relative;
  text-align: center;
  z-index: 1;
}

.page-title h1 {
  margin-bottom: 10px;
}

.page-title p {
  max-width: 600px;
  margin: 0 auto;
}

.clarity-checks, .international-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.check-item, .option-item {
  background-color: var(--bg-secondary);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-item i, .option-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.check-item h3, .option-item h3 {
  margin-bottom: 15px;
}


#tsparticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}


@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-benefits {
    flex-direction: column;
  }
  
  .hero-benefit {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .timeline:before {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
  
  .timeline-item:before {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .header-container {
    padding: 10px 20px;
  }
  
  .logo img {
    height: 35px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 0 0 30px 0;
  }
  
  .nav-menu a {
    font-size: 1.2rem;
  }
  
  .hamburger {
    display: flex;
    z-index: 100;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero {
    height: auto;
    min-height: 500px;
    padding: 120px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .form-container {
    padding: 20px;
  }
  
  .modal-content {
    padding: 20px;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animated {
  animation: fadeIn 1s ease;
}


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

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pt-1 {
  padding-top: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-4 {
  padding-top: 40px;
}


.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");
  }
}