:root {
  --primary: #34c759;
  --primary-dark: #2a9d4b;
  --dark: #1a1d23;
  --light: #f9f9f9;
  --gray: #94a3b8;
  --border: #d3d7dc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
  background: #ffffff;
  overflow-x: hidden;
}

.navbar {
  padding: 1rem 0;
  background: #ffffff !important;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-img {
  max-height: 46px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

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

.btn-primary {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #ffffff;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.btn-outline-dark {
  border: 1px solid var(--dark);
  color: var(--dark);
  background: transparent;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-outline-dark:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: #ffffff;
}

.hero-section {
  padding: 8rem 0 4rem;
  background: #ffffff;
}

.hero-image-wrapper {
  position: relative;
  padding-left: 2rem;
}

.hero-image-wrapper img {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.display-3, .display-4, .display-5, .display-6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
}

.feature-card,
.service-card,
.testimonial-card,
.team-card,
.blog-card,
.pricing-card,
.case-study-card,
.mission-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  height: 100%;
}

.feature-card:hover,
.service-card:hover,
.blog-card:hover,
.case-study-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.feature-icon,
.mission-icon {
  color: var(--primary);
}

.service-image,
.blog-image,
.case-study-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.testimonial-avatar,
.team-avatar {
  width: 63px;
  height: 57px;
  border-radius: 50%;
  object-fit: cover;
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.stat-item {
  padding: 2rem 0;
}

.stat-value {
  color: var(--primary);
}

.pricing-card {
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  right: 22px;
  background: var(--primary);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 17px;
  font-size: 0.875rem;
  font-weight: 600;
}

.accordion-button {
  font-weight: 600;
  background: #ffffff;
  border: none;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background: var(--light);
  color: var(--primary);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.accordion-item {
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  pointer-events: none;
}

.timeline-item {
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #ffffff;
  pointer-events: none;
}

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

.integration-logo {
  padding: 2rem;
}

footer {
  background: #ffffff;
  padding-top: 3rem;
}

footer a {
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--primary) !important;
}

.page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.form-control,
.form-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-icon {
  width: 37px;
  text-align: center;
}

.article-hero {
  padding-top: 8rem;
}

.article-content {
  font-size: 1.125rem;
  line-height: 1.8;
}

.article-content h2,
.article-content h3 {
  margin-top: 2rem;
}

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

.legal-section p,
.legal-section ul {
  font-size: 1rem;
  line-height: 1.8;
}

.legal-section ul {
  padding-left: 1.5rem;
}

.table {
  border: 1px solid var(--border);
}

.table thead {
  background: var(--light);
  border-bottom: 2px solid var(--border);
}

.table-hover tbody tr:hover {
  background-color: var(--light);
}

.badge {
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 6rem 0 3rem;
  }

  .page-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .hero-image-wrapper {
    padding-left: 0;
    margin-top: 2rem;
  }

  .display-3 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }
}

@media (max-width: 575px) {
  .btn-primary,
  .btn-outline-primary,
  .btn-outline-dark {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
}
