:root {
  --primary: #2f4f7f;
  --accent: #66d9ef;
  --dark: #1a1d23;
  --bg: #f5f5f5;
  --text: #333333;
  --border: #cccccc;
}

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

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.navbar {
  background-color: var(--dark) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: #fff !important;
  text-decoration: none;
}

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

.site-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(183, 28, 28, 0.3);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

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

.news-ticker {
  background-color: var(--primary);
  height: 51px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ticker-wrapper {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
}

.ticker-content {
  display: flex;
  animation: scroll-ticker 30s linear infinite;
  white-space: nowrap;
  padding-left: 100%;
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ticker-item {
  color: #ffffff;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 3rem;
  display: inline-flex;
  align-items: center;
}

.ticker-item i {
  font-size: 0.5rem;
}

.hero-section {
  position: relative;
  padding-top: 69px;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -99px;
  right: -101px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -53px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-card {
  background: #ffffff;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 63px;
  height: 61px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.5rem;
}

.service-card {
  background: #ffffff;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 9px 26px rgba(0,0,0,0.15);
}

.pricing-card.featured {
  border-left-color: var(--primary);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 21px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-header {
  background: linear-gradient(135deg, var(--dark), #1e293b);
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.pricing-price {
  margin-top: 1rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 700;
}

.pricing-price .period {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

.pricing-body {
  padding: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 19px rgba(0,0,0,0.1);
}

.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.team-card {
  background: #ffffff;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 13px rgba(0,0,0,0.1);
}

.team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.team-social a {
  transition: color 0.3s ease;
}

.team-social a:hover {
  color: var(--primary) !important;
}

.blog-card {
  background: #ffffff;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 14px rgba(0,0,0,0.1);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-meta {
  font-size: 0.875rem;
}

.blog-date, .blog-category {
  display: inline-block;
}

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

.contact-form .form-control {
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(183, 28, 28, 0.25);
}

.contact-info-item {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
}

.process-step {
  padding: 1.5rem;
}

.step-number {
  width: 57px;
  height: 63px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto;
}

.integration-logo {
  transition: all 0.3s ease;
}

.integration-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.footer {
  background-color: var(--dark);
}

.footer-brand {
  color: #fff !important;
  text-decoration: none;
}

.footer a {
  transition: color 0.3s ease;
}

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

.legal-text {
  line-height: 1.8;
}

.legal-text h2 {
  color: var(--primary);
  margin-top: 2rem;
}

.legal-text ul, .legal-text ol {
  padding-left: 1.5rem;
}

.quote-block {
  position: relative;
  font-size: 1.125rem;
}

.value-card {
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .display-3 {
    font-size: 2.5rem;
  }

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

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

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

@media (max-width: 768px) {
  .news-ticker {
    height: 42px;
  }

  .ticker-item {
    font-size: 0.75rem;
    padding: 0 1.5rem;
  }

  .hero-section {
    min-height: 50vh !important;
  }

  section {
    padding: 3rem 0 !important;
  }
}
