
:root {
  --primary: #0B63E5;
  --secondary: #00C2A3;
  --accent: #FF6B35;
  --dark: #1A2B4A;
  --light: #F0F5FF;
  --white: #FFFFFF;
  --gray: #8A94A6;
  --black: #0F172A;
  --box-shadow: 0 4px 20px rgba(26, 43, 74, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

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

p {
  margin-bottom: 1.2rem;
}

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

a:hover {
  color: var(--secondary);
  text-decoration: none;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #0951c2;
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #00a589;
  color: var(--white);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background-color: #e55a24;
  color: var(--white);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-dark { color: var(--dark); }
.text-light { color: var(--light); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-dark { background-color: var(--dark); }
.bg-light { background-color: var(--light); }
.bg-white { background-color: var(--white); }
.bg-gray { background-color: var(--gray); }

.section {
  padding: 5rem 0;
}

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


.header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  z-index: 1000;
}

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

.logo {
  height: 50px;
  width: auto;
}

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

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

.nav-link {
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

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

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

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

.navbar-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
}


.mobile-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}


.hero {
  position: relative;
  background-color: var(--light);
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  min-height: 80vh;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 50%;
  padding-right: 3rem;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

.hero-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-top: 2rem;
}

.hero-image {
  width: 50%;
  position: relative;
  height: 100%;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}


.features {
  padding: 5rem 0;
}

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

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

.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  transition: var(--transition);
  height: 300px;
  overflow: hidden;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(26, 43, 74, 0.15);
}

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

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

.feature-content {
  display: none;
  margin-top: 1rem;
}

.feature-card:hover .feature-content {
  display: block;
}


.expanding-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  height: 120px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.expanding-card:hover {
  height: 300px;
  box-shadow: 0 10px 30px rgba(26, 43, 74, 0.15);
}

.expanding-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.expanding-card-content {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.expanding-card:hover .expanding-card-content {
  opacity: 1;
  transform: translateY(0);
}


.demo {
  background-color: var(--light);
  padding: 5rem 0;
}

.demo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

.demo-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  cursor: pointer;
}

.demo-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(26, 43, 74, 0.15);
}

.demo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.demo-caption {
  padding: 1.5rem;
}


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

.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-top: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}


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

.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.step-description {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
}


.cases {
  padding: 5rem 0;
}

.case-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.case-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-content {
  padding: 1.5rem;
}

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

.case-description {
  margin-bottom: 1.5rem;
  color: var(--gray);
}


.integrations {
  padding: 5rem 0;
  background-color: var(--light);
}

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.integration-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  height: 150px;
  justify-content: center;
  transition: var(--transition);
}

.integration-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(26, 43, 74, 0.1);
}

.integration-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.integration-name {
  text-align: center;
  font-size: 0.9rem;
}


.faq-mini {
  padding: 5rem 0;
}

.faq-mini-container {
  text-align: center;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-weight: 500;
}


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

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

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

.form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 99, 229, 0.1);
}

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

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

.form-check-input {
  margin-top: 0.2rem;
}

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

.form-check-label a {
  color: var(--primary);
  text-decoration: underline;
}

.iti {
  width: 100%;
}


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

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

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

.footer-contact-info {
  margin-bottom: 1.5rem;
}

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

.footer-contact-icon {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.footer-heading {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

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

.footer-link a {
  color: var(--light);
  transition: var(--transition);
}

.footer-link a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--light);
  font-size: 0.9rem;
  margin-bottom: 0;
}


.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  margin-bottom: 0.5rem;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-modal {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 1.5rem;
}

.cookie-modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.cookie-modal-body {
  padding: 1.5rem;
}

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

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

.cookie-category-toggle {
  display: flex;
  align-items: center;
}

.cookie-category-toggle input {
  margin-right: 0.5rem;
}

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

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

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--light);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.breadcrumb {
  background-color: var(--light);
  padding: 1rem 0;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}

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

.breadcrumb-item:after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--gray);
}

.breadcrumb-item:last-child:after {
  display: none;
}

.breadcrumb-link {
  color: var(--gray);
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 500;
}


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

.infrastructure-section:nth-child(even) {
  background-color: var(--light);
}

.infrastructure-container {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.infrastructure-content {
  flex: 1;
}

.infrastructure-image {
  flex: 1;
}

.infrastructure-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}


.careers-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.job-list {
  display: grid;
  gap: 2rem;
}

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

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 43, 74, 0.15);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.job-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.job-meta-icon {
  color: var(--primary);
}

.job-description {
  margin-bottom: 1.5rem;
}

.job-requirements {
  margin-bottom: 1.5rem;
}

.job-requirements h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.job-requirements ul {
  padding-left: 1.5rem;
}

.job-requirements li {
  margin-bottom: 0.5rem;
}


.faq-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.faq-category-btn {
  background-color: var(--light);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.faq-category-btn.active, .faq-category-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--light);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.faq-answer {
  display: none;
  padding-top: 1rem;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-articles {
  margin-top: 4rem;
}

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

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

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

.faq-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 43, 74, 0.15);
}

.faq-article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.faq-article-content {
  padding: 1.5rem;
}

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

.faq-article-excerpt {
  color: var(--gray);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


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

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

.article-meta {
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.article-content h2 {
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem;
}

.article-content h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.2rem;
}

.article-content img {
  max-width: 100%;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.article-content blockquote {
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius);
  font-style: italic;
  margin: 2rem 0;
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}


.contact-info {
  margin-bottom: 4rem;
}

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

.contact-info-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.contact-info-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-map {
  margin-top: 4rem;
}

.map-iframe-container {
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}


.thanks-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 4rem 0;
}

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

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

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


.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 0;
}

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

.legal-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.legal-updated {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

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

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

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

.legal-content ul, .legal-content ol {
  padding-left: 2rem;
}

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


.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--light);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .process-steps::before {
    display: none;
  }
  
  .process-step {
    width: 45%;
  }
}

@media (max-width: 992px) {
  .nav-list {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-container {
    flex-direction: column;
  }
  
  .hero-content, .hero-image {
    width: 100%;
    padding: 0;
  }
  
  .hero-content {
    margin-bottom: 3rem;
  }
  
  .infrastructure-container {
    flex-direction: column;
  }
  
  .infrastructure-content, .infrastructure-image {
    flex: auto;
    width: 100%;
  }
  
  .infrastructure-image {
    margin-top: 2rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    width: 100%;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .demo-gallery {
    grid-template-columns: 1fr;
  }
  
  .case-cards {
    grid-template-columns: 1fr;
  }
  
  .faq-articles-list {
    grid-template-columns: 1fr;
  }
  
  .contact-info-container {
    grid-template-columns: 1fr;
  }
  
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .expanding-card:hover {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature-card {
    height: auto;
  }
  
  .feature-content {
    display: block;
  }
  
  .expanding-card, .expanding-card:hover {
    height: auto;
  }
  
  .expanding-card-content {
    opacity: 1;
    transform: none;
  }
  
  .article-title {
    font-size: 1.8rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .legal-title {
    font-size: 1.8rem;
  }
  
  .job-header {
    flex-direction: column;
  }
  
  .job-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}


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

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


.uk-offcanvas-bar {
  background-color: var(--white);
  color: var(--dark);
}

.uk-offcanvas-bar .uk-nav-default > li > a {
  color: var(--dark);
}

.uk-offcanvas-bar .uk-nav-default > li > a:hover {
  color: var(--primary);
}

.uk-offcanvas-bar .uk-nav-default .uk-nav-header {
  color: var(--primary);
}

.uk-offcanvas-bar .uk-close {
  color: var(--dark);
}

.uk-offcanvas-bar .uk-close:hover {
  color: var(--primary);
}