
:root {
  --dark-bg: #121212;
  --dark-surface: #1e1e1e;
  --dark-card: #2a2a2a;
  --dark-border: #3a3a3a;
  --dark-input: #2d2d2d;
  --primary: #5e72e4;
  --primary-hover: #4a5bd4;
  --secondary: #8c9eff;
  --success: #2dce89;
  --warning: #fb6340;
  --error: #f5365c;
  --text-primary: #f8f8f8;
  --text-muted: #a0aec0;
}

body {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--dark-border) var(--dark-bg);
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--dark-border);
  border-radius: 6px;
  border: 3px solid var(--dark-bg);
}


h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}


.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary:hover, 
.btn-primary:focus {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  text-align: center;
  border: 1px solid var(--dark-border);
  cursor: pointer;
}

.btn-secondary:hover, 
.btn-secondary:focus {
  border-color: var(--primary);
  color: var(--primary);
}


.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--dark-input);
  border: 1px solid var(--dark-border);
  border-radius: 0.5rem;
  color: var(--text-primary);
  transition: border-color 0.2s ease-in-out;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--dark-border);
  border-radius: 0.25rem;
  background-color: var(--dark-input);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}

.checkbox:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox:checked::before {
  content: '\2713';
  font-size: 0.875rem;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.service-card {
  transition: all 0.3s ease-in-out;
}

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

.service-card:hover > div {
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.certification-badge {
  display: flex;
  align-items: center;
  background-color: rgba(94, 114, 228, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.certification-badge i {
  margin-right: 0.5rem;
}


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

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

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


.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background-color: var(--dark-card);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  max-width: 32rem;
  margin: 0 auto;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-settings-content {
  background-color: var(--dark-card);
  border-radius: 0.75rem;
  max-width: 42rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

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

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1.5rem;
}

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark-border);
  border-radius: 1.5rem;
  transition: all 0.4s;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 1rem;
  width: 1rem;
  left: 0.25rem;
  bottom: 0.25rem;
  background-color: white;
  border-radius: 50%;
  transition: all 0.4s;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(1.5rem);
}


.iti {
  width: 100%;
}

.iti__flag-container:hover .iti__selected-flag {
  background-color: var(--dark-input);
}

.iti__country-list {
  background-color: var(--dark-card);
  border-color: var(--dark-border);
}

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

.iti__country:hover {
  background-color: var(--dark-surface);
}


@media (max-width: 768px) {
  .cookie-consent {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}


.aspect-w-4 {
  position: relative;
  padding-bottom: calc(3 / 4 * 100%);
}

.aspect-h-3 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


.prose {
  color: var(--text-primary);
  max-width: 65ch;
  font-size: 1rem;
  line-height: 1.75;
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
}

.prose strong {
  color: var(--text-primary);
  font-weight: 600;
}

.prose h1, 
.prose h2, 
.prose h3, 
.prose h4 {
  color: var(--text-primary);
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3;
}

.prose p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose ul {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose img {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose blockquote {
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  border-left-width: 0.25rem;
  border-left-color: var(--primary);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}

.prose table {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  border-collapse: collapse;
}

.prose th {
  font-weight: 600;
  padding: 0.75rem 0.75rem 0.75rem 0;
  border-bottom: 1px solid var(--dark-border);
}

.prose td {
  padding: 0.75rem 0.75rem 0.75rem 0;
  border-bottom: 1px solid var(--dark-border);
}


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

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

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-in-out;
}


a:focus, 
button:focus, 
input:focus, 
textarea:focus, 
select:focus, 
[tabindex]:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}


.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 0;
}