@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800&display=swap");

:root {
  --font-poppins: "Poppins", system-ui, sans-serif;
  --color-primary: #3b82f6;
  --color-secondary: #000000;
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --radius: 0.75rem;
  --radius-lg: 1rem;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-poppins) !important;
  font-weight: 400;
  font-optical-sizing: auto;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em;
  font-family: var(--font-poppins) !important;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em;
  font-family: var(--font-poppins) !important;
}

h3 {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  font-family: var(--font-poppins) !important;
}

h4, h5 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  font-family: var(--font-poppins) !important;
}

h6 {
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  font-family: var(--font-poppins) !important;
}

p {
  font-size: 1.0625rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  font-family: var(--font-poppins) !important;
}

button {
  padding: 0.875rem 1.75rem !important;
  border: none !important;
  cursor: pointer !important;
  color: white !important;
  font-family: var(--font-poppins) !important;
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
  border-radius: var(--radius) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: var(--shadow-md);
}

button:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
}

a {
  text-decoration: none !important;
  font-family: var(--font-poppins) !important;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: none !important;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.cc {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}

.card {
  padding: 1.75rem !important;
  border-radius: var(--radius-lg) !important;
  background-color: var(--color-secondary) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

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

.service-card {
  border-radius: var(--radius-lg) !important;
  background-color: var(--color-secondary) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease !important;
}

.service-card:hover {
  background-color: var(--color-primary) !important;
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-xl) !important;
}

@keyframes marquee-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logos-track {
  animation: marquee-x 20s linear infinite;
}

.logos-track:hover {
  animation-play-state: paused;
}

.relative-logos {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
}

.faq-question:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: white;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(0, 0, 0, 0.15);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 2rem 1rem;
  }
  .faq-title {
    font-size: 1.75rem;
  }
  .faq-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  .faq-icon {
    font-size: 1.125rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }
}
