
:root {
  --primary: #2563EB;
  --secondary: #0F172A;
  --accent: #F59E0B;
  --background: #F8FAFC;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --success: #10B981;
  --error: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;
  --border: #E2E8F0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 8px;
  --transition: all 0.3s ease;
}


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

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

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

.bg-primary {
  background-color: var(--primary) !important;
}

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

.bg-accent {
  background-color: var(--accent) !important;
}

.bg-light {
  background-color: var(--background) !important;
}


.btn-primary {
  background-color: var(--primary) !important;
  color: white !important;
  border: none !important;
  transition: var(--transition);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #1d4ed8 !important;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: var(--secondary) !important;
  color: white !important;
  border: none !important;
  transition: var(--transition);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #1e293b !important;
  box-shadow: var(--shadow);
}

.btn-accent {
  background-color: var(--accent) !important;
  color: white !important;
  border: none !important;
  transition: var(--transition);
}

.btn-accent:hover, .btn-accent:focus {
  background-color: #d97706 !important;
  box-shadow: var(--shadow);
}

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

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--primary) !important;
  color: white !important;
  box-shadow: var(--shadow);
}


.navbar {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.uk-navbar-container:not(.uk-navbar-transparent) {
  background: white;
}

.uk-navbar-nav > li > a {
  color: var(--text-primary);
  font-weight: 500;
  min-height: 60px;
  text-transform: none;
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li > a.uk-open,
.uk-navbar-nav > li.uk-active > a {
  color: var(--primary);
}


.hero {
  padding: 6rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.1);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: rgba(245, 158, 11, 0.1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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


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

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

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


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

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.25rem;
  opacity: 0.8;
}


.testimonials {
  padding: 5rem 0;
  background-color: white;
}

.testimonial-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -2rem;
  left: -1rem;
  opacity: 0.1;
  color: var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.testimonial-info p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}


.cta {
  padding: 5rem 0;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta p {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  opacity: 0.9;
}


.contact-form {
  padding: 5rem 0;
  background-color: white;
}

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

.contact-info {
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
}

.contact-info h3 {
  color: white;
  margin-bottom: 1.5rem;
}

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

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

.contact-text {
  flex: 1;
}

.contact-text h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-text p {
  margin-bottom: 0;
  opacity: 0.9;
}


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

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

.footer-logo img {
  height: 40px;
}

.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

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

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

.social-links li {
  margin-right: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
}


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

.page-header::after {
  content: '';
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-header p {
  opacity: 0.9;
  margin-bottom: 0;
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
}


.integration {
  padding: 5rem 0;
}

.integration-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 3rem 0;
}

.integration-step {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2.5rem;
}

.integration-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.integration-step h3 {
  margin-bottom: 1rem;
}


.case-studies {
  padding: 5rem 0;
  background-color: var(--background);
}

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

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.case-image {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.case-content {
  padding: 2rem;
}

.case-content h3 {
  margin-bottom: 1rem;
}

.case-meta {
  display: flex;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.case-meta div {
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
}

.case-meta i {
  margin-right: 0.5rem;
}


.about {
  padding: 5rem 0;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-content {
  padding: 2rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-stat {
  flex: 1;
  min-width: 150px;
  margin-bottom: 1.5rem;
}

.about-stat h4 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.about-stat p {
  margin-bottom: 0;
  color: var(--text-secondary);
}


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

.team-card {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.team-image {
  height: 300px;
  background-size: cover;
  background-position: center;
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-content h3 {
  margin-bottom: 0.5rem;
}

.team-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-social li {
  margin: 0 0.5rem;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--background);
  color: var(--text-secondary);
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--primary);
  color: white;
}


.faq {
  padding: 5rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--background);
}

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

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

.faq-answer {
  padding: 1.5rem;
  display: none;
}

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


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

.pricing-card {
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-duration {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-features li {
  padding: 0.75rem 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(--success);
  margin-right: 0.75rem;
}

.pricing-features i.unavailable {
  color: var(--text-secondary);
}

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


.blog {
  padding: 5rem 0;
}

.blog-card {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.blog-meta div {
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
}

.blog-meta i {
  margin-right: 0.5rem;
}

.blog-content h3 {
  margin-bottom: 1rem;
}

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


.contact-map {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}


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

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

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

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: var(--radius) !important;
}

.shadow {
  box-shadow: var(--shadow) !important;
}


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

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

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: white;
  background-clip: padding-box;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: var(--text-primary);
  background-color: white;
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

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

.form-check-label {
  margin-bottom: 0;
}


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

.cookie-consent.active {
  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.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  display: none;
}

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

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

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

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

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

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

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

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

.cookie-category-description {
  margin-bottom: 0;
  color: var(--text-secondary);
}

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


.thanks-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.thanks-card {
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem;
  max-width: 600px;
  width: 100%;
}

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

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

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


@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  .stat-item {
    margin-bottom: 2rem;
  }
  
  .cta h2 {
    font-size: 1.75rem;
  }
  
  .cta p {
    font-size: 1.1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .feature-card, 
  .testimonial-card, 
  .case-card, 
  .team-card, 
  .blog-card {
    margin-bottom: 1rem;
  }
  
  .form-card, 
  .contact-info {
    padding: 1.5rem;
  }
  
  .thanks-card {
    padding: 2rem;
  }
  
  .thanks-title {
    font-size: 2rem;
  }
  
  .thanks-message {
    font-size: 1.1rem;
  }
}


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


.choices {
  margin-bottom: 0;
}

.choices__inner {
  min-height: 48px;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: white;
}

.choices__input {
  background-color: transparent;
}

.choices__list--dropdown {
  border-color: var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: var(--primary);
  color: white;
}

.choices[data-type*=select-one]:after {
  border-color: var(--text-secondary) transparent transparent;
}

.choices[data-type*=select-one].is-open:after {
  border-color: transparent transparent var(--text-secondary);
}


.uk-button {
  border-radius: var(--radius);
  font-weight: 500;
  text-transform: none;
}

.uk-button-primary {
  background-color: var(--primary);
}

.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #1d4ed8;
}

.uk-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.uk-section-primary {
  background-color: var(--primary);
}

.uk-section-secondary {
  background-color: var(--secondary);
}

.uk-section-muted {
  background-color: var(--background);
}

.uk-accordion-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.uk-accordion-content {
  margin-top: 1rem;
}

.uk-navbar-dropdown {
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.uk-navbar-dropdown-nav > li > a {
  color: var(--text-primary);
  padding: 8px 16px;
}

.uk-navbar-dropdown-nav > li > a:hover {
  color: var(--primary);
  background-color: var(--background);
}

.uk-overlay-primary {
  background-color: rgba(15, 23, 42, 0.7);
}

.uk-form-label {
  font-weight: 500;
}

.uk-form-controls input,
.uk-form-controls textarea,
.uk-form-controls select {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.uk-form-controls input:focus,
.uk-form-controls textarea:focus,
.uk-form-controls select:focus {
  border-color: var(--primary);
}

.uk-notification {
  border-radius: var(--radius);
}