:root {
  --primary: #1e40af;
  --secondary: #10b981;
  --accent-start: #8b5cf6;
  --accent-end: #ec4899;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
.font-inter {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
}
.font-outfit {
  font-family: Outfit, Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
}
.nav-link {
  color: #111827;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.nav-link:hover {
  opacity: 1;
}
.nav-link.active {
  opacity: 1;
  font-weight: 600;
}
.mobile-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: #ffffffcc;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #fff;
  font-weight: 600;
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #fff;
  font-weight: 600;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  background: #ffffff20;
  color: #fff;
  border: 1px solid #fff6;
}
.stat-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: #ffffff1a;
  border: 1px solid #ffffff33;
}
.logo {
  width: 240px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(10%);
  opacity: 0.98;
}
.logo-grid {
  align-items: start;
}
.logo-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease;
}
.logo-figure:hover {
  transform: translateY(-3px);
}
.logo-caption {
  font-weight: 600;
  color: #374151;
}
.card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.card-title {
  font-weight: 600;
  margin-top: 0.75rem;
}
.card-text {
  color: #4b5563;
  margin-top: 0.25rem;
}
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #111827;
}
.feature {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}
.feature-title {
  font-weight: 600;
  margin-top: 0.75rem;
}
.feature-text {
  color: #4b5563;
  margin-top: 0.25rem;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
}
.step {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  color: #4338ca;
  font-weight: 700;
}
.step-text {
  margin-top: 0.5rem;
}
.testimonial {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.testimonial-title {
  font-weight: 700;
  font-size: 1.125rem;
}
.testimonial-text {
  margin-top: 0.5rem;
  color: #4b5563;
  line-height: 1.7;
}
.testimonial-author {
  margin-top: 0.75rem;
  color: #374151;
  font-weight: 600;
}
.blog-card {
  display: block;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}
.blog-thumb {
  height: 160px;
  background: linear-gradient(135deg, #1e40af, #8b5cf6);
}
.blog-content {
  padding: 1rem;
}
.blog-title {
  font-weight: 600;
}
.blog-text {
  color: #4b5563;
}
.footer-title {
  color: #fff;
  font-weight: 600;
}
.footer-link {
  color: #d1d5db;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: #ffffff1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
}
.service-summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
}
.service-body {
  padding: 0 1.25rem 1.25rem;
}
.list {
  display: grid;
  gap: 0.5rem;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: #f3f4f6;
  color: #111827;
  border: 1px solid #e5e7eb;
}
.timeline {
  display: grid;
  gap: 0.5rem;
}
.timeline-item {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
}
.icon-card {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-align: center;
}
.chart {
  min-height: 160px;
  border: 1px dashed #cbd5e1;
  border-radius: 0.75rem;
}
.campaign {
  min-height: 120px;
  border-radius: 0.75rem;
  background: #f5f3ff;
  border: 1px solid #e5e7eb;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.infocard {
  min-height: 120px;
  border-radius: 0.75rem;
  background: #ecfeff;
  border: 1px solid #e5e7eb;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-cover {
  min-height: 280px;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}
.flip-card {
  padding: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}
.flip-card:hover {
  transform: rotateY(7deg);
}
.badge-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-align: center;
}
.shield {
  min-height: 160px;
  border-radius: 0.75rem;
  background: radial-gradient(circle at 30% 30%, #1e40af, #8b5cf6);
  border: 1px solid #e5e7eb;
}
.layers {
  display: grid;
  gap: 0.5rem;
}
.layer {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
}
.flowchart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.flow-item {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  text-align: center;
}
.accordion {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  margin-top: 0.5rem;
}
.accordion summary {
  cursor: pointer;
  padding: 0.75rem 1rem;
  font-weight: 600;
}
.accordion-body {
  padding: 0 1rem 1rem;
}
.dashboard {
  min-height: 120px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}
.benefit-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-align: center;
}
.input {
  padding: 0.6rem 0.8rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
}
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: #0006;
}
.modal-content {
  position: relative;
  z-index: 10;
  width: min(720px, 90vw);
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 1rem;
}
.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  background: #f3f4f6;
}
.contact-card {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.map-embed {
  height: 240px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.contact-form {
  display: grid;
  gap: 0.75rem;
}
.textarea {
  min-height: 120px;
  padding: 0.6rem 0.8rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
}
/* Services new layout */
.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .service-block {
    grid-template-columns: 1fr 1fr;
  }
}
.service-image {
  width: 100%;
  height: 360px;
  border-radius: 1rem;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.service-content {
  display: grid;
  gap: 0.75rem;
}
.service-title {
  font-weight: 700;
  font-size: 1.5rem;
}
.service-text {
  color: #4b5563;
}
.service-list {
  display: grid;
  gap: 0.5rem;
  list-style: disc;
  padding-left: 1.25rem;
}
/* Careers styling */
#jobsList .card {
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
}
#jobsList .card .btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
}
.benefit-card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid #e5e7eb;
}
.modal-content {
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.2);
}
.swiper {
  width: 100%;
  height: 100%;
}
.logo-swiper {
  padding: 1rem;
}
.brand-logo {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
}
