:root {
  --primary: #3e8e41;
  --primary-dark: #2f6f31;
  --primary-light: #56b760;
  --accent: #8bc34a;
  --accent-dark: #66bb6a;
  --bg-dark: #212529;
  --bg-dark-alt: #2c343d;
  --bg-card: #2c343d;
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #6c757d;
  --border-color: #3f4954;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
  --shadow-lg: 0 22px 53px -15px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
  --container-max: 1200px;
  --section-padding: 79px;
  --element-spacing: 29px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 19px;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 22px;
}

img:not(.logo-img):not(.logo) {
  max-width: 100%;
  height: auto;
}

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

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

a:hover {
  color: var(--primary-light);
}

.section-padding {
  padding: var(--section-padding) 0;
}

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

.header-main {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  z-index: 1000;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  color: var(--text-white) !important;
  font-weight: 700;
  font-size: 1.25rem;
}

.site-name {
  color: var(--text-white);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 500;
  padding: 13px 18px;
  transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--primary);
}

.navbar-toggler {
  padding: 4px 8px;
}

.dropdown-menu {
  background: var(--bg-dark-alt);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 0;
}

.dropdown-item {
  color: var(--text-light);
  padding: 7px 17px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--bg-dark);
  color: var(--primary);
}

.btn {
  padding: 12px 27px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 32px rgba(14, 165, 233, 0.3);
  background: var(--gradient-primary);
}

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

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--text-white);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white);
}

.btn-outline-light:hover {
  background: var(--text-white);
  color: var(--bg-dark);
}

.btn-light {
  background: var(--text-white);
  color: var(--bg-dark);
}

.btn-light:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1.1rem;
}

.section-badge {
  display: inline-block;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  padding: 8px 13px;
  border-radius: 51px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header {
  margin-bottom: var(--element-spacing);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
}

.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 83px;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.min-vh-80 {
  min-height: 80vh;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 8px 19px;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 21px;
}

.badge-icon {
  width: 18px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 50%;
  font-size: 0.75rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 34px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-light);
}

.hero-feature i {
  color: var(--accent);
  font-size: 1.125rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 31px;
}

.hero-trust {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.trust-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 22px;
}

.trust-logo {
  height: 33px;
  opacity: 0.6;
  filter: grayscale(100%) brightness(200%);
  transition: var(--transition);
}

.trust-logo:hover {
  opacity: 1;
}

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

.code-window {
  background: var(--bg-dark-alt);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-color);
}

.dot {
  width: 11px;
  height: 9px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}

.dot.yellow {
  background: #eab308;
}

.dot.green {
  background: #22c55e;
}

.file-name {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
}

.code-body {
  padding: 22px;
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 0.875rem;
  line-height: 1.8;
}

.code-body pre {
  margin: 0;
  white-space: pre-wrap;
}

.code-body .keyword {
  color: #c678dd;
}

.code-body .class {
  color: #e5c07b;
}

.code-body .string {
  color: #98c379;
}

.code-body .property {
  color: #61afef;
}

.code-body .method {
  color: #61afef;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-dark-alt);
  padding: 15px 15px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: var(--text-light);
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.25rem;
}

.floating-card.card-1 {
  top: 23px;
  right: -22px;
}

.floating-card.card-1 i {
  color: var(--accent);
}

.floating-card.card-2 {
  bottom: 42px;
  left: -18px;
  animation-delay: 1.5s;
}

.floating-card.card-2 i {
  color: var(--primary);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.stats-section {
  background: var(--bg-dark-alt);
  padding: 63px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--element-spacing);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 25px;
  background: var(--bg-dark);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.stat-icon {
  width: 63px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 15px;
  font-size: 1.5rem;
  color: var(--primary);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 11px;
  padding: 34px;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 57px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 13px;
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 22px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 15px;
}

.feature-desc {
  color: var(--text-muted);
  margin-bottom: 19px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
}

.feature-link:hover {
  gap: 13px;
}

.service-card {
  background: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 27px 53px rgba(0, 0, 0, 0.3);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.service-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.service-card:hover .service-overlay {
  opacity: 1;
  pointer-events: auto;
}

.service-content {
  padding: 26px;
}

.service-icon {
  width: 51px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 8px;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
}

.service-desc {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.service-features i {
  color: var(--accent);
  font-size: 0.875rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 33px;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--primary);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #fbbf24;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 26px;
  line-height: 1.8;
}

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

.author-img {
  width: 55px;
  height: 57px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.team-card {
  background: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 53px rgba(0, 0, 0, 0.3);
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
  padding: 19px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
  transform: translateY(100%);
  transition: var(--transition);
  pointer-events: none;
}

.team-social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.team-card:hover .team-social {
  transform: translateY(0);
  pointer-events: auto;
}

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

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

.team-info {
  padding: 18px;
  text-align: left;
}

.team-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 47px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: var(--primary);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: 17px;
  right: 15px;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: 52px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-header {
  padding: 34px 34px 21px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 21px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-body {
  padding: 25px 33px;
  flex: 1;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  font-size: 1rem;
}

.pricing-features li i.fa-check {
  color: var(--accent);
}

.pricing-features li i.fa-times {
  color: var(--text-muted);
}

.pricing-features li.disabled {
  color: var(--text-muted);
}

.pricing-footer {
  padding: 22px 30px 29px;
}

.faq-accordion .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: var(--bg-card);
  color: var(--text-white);
  font-weight: 600;
  padding: 20px 22px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(14, 165, 233, 0.05);
  color: var(--primary);
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(58%) sepia(72%) saturate(1621%) hue-rotate(168deg) brightness(97%) contrast(92%);
}

.faq-accordion .accordion-body {
  padding: 0 27px 17px;
  color: var(--text-muted);
}

.cta-section {
  padding: var(--section-padding) 0;
}

.cta-wrapper {
  background: var(--gradient-primary);
  border-radius: 27px;
  padding: 61px;
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 15px;
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
  color: var(--text-white);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}

.integration-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 31px;
  text-align: center;
  transition: var(--transition);
}

.integration-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.integration-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.integration-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
}

.blog-card {
  background: var(--bg-card);
  border-radius: 19px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 18px;
  left: 19px;
  background: var(--primary);
  color: var(--text-white);
  padding: 6px 13px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-content {
  padding: 26px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.blog-title a {
  color: var(--text-white);
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--text-muted);
  margin-bottom: 17px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
}

.footer-main {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding-top: 79px;
}

.footer-top {
  padding-bottom: 59px;
  border-bottom: 1px solid var(--border-color);
}

.footer-desc {
  color: var(--text-muted);
  margin-bottom: 23px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 39px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark-alt);
  border-radius: 8px;
  color: var(--text-light);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: var(--text-white);
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 23px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: var(--text-muted);
  margin-bottom: 13px;
}

.footer-contact i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-contact a {
  color: var(--text-muted);
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 26px 0;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.tech-stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-tech {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-dark-alt);
  color: var(--text-muted);
  padding: 6px 13px;
  border-radius: 6px;
  font-size: 0.75rem;
}

.page-hero {
  background: var(--bg-dark-alt);
  padding: 160px 0 83px;
  text-align: left;
}

.page-hero-small {
  padding: 140px 0 62px;
}

.page-badge {
  display: inline-block;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  padding: 8px 13px;
  border-radius: 53px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 19px;
}

.page-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 22px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 27px;
  background: var(--bg-dark);
  border-radius: 13px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.tech-item:hover {
  border-color: var(--primary);
}

.tech-item i {
  font-size: 2rem;
  color: var(--primary);
}

.tech-item span {
  font-weight: 600;
  color: var(--text-light);
}

.process-timeline {
  position: relative;
}

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

.process-step {
  display: flex;
  gap: 22px;
  margin-bottom: 32px;
  position: relative;
}

.step-number {
  width: 57px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--text-white);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 21px;
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.step-desc {
  color: var(--text-muted);
  margin: 0;
}

.form-control,
.form-select {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 14px 17px;
  border-radius: 8px;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  background: var(--bg-dark);
  border-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-label {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 8px;
}

.legal-document {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 17px;
  padding: 45px;
}

.legal-section {
  margin-bottom: 37px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 18px;
}

.legal-section p {
  color: var(--text-muted);
  margin-bottom: 13px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
}

.legal-section ul li {
  position: relative;
  padding-left: 21px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
}

.blog-card-horizontal {
  display: flex;
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
  transition: var(--transition);
}

.blog-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 23px 47px rgba(0, 0, 0, 0.3);
}

.blog-card-horizontal .blog-img-wrapper {
  width: 300px;
  flex-shrink: 0;
  aspect-ratio: auto;
}

.blog-card-horizontal .blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-sidebar .sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 23px;
  margin-bottom: 21px;
}

.widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 13px;
}

.widget-desc {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.search-form {
  display: flex;
  gap: 8px;
}

.search-form .form-control {
  flex: 1;
}

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

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.category-list a:hover {
  color: var(--primary);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: var(--transition);
}

.tag:hover {
  background: var(--primary);
  color: var(--text-white);
}

.article-hero {
  background: var(--bg-dark-alt);
  padding: 160px 0 62px;
}

.article-category {
  display: inline-block;
  background: var(--primary);
  color: var(--text-white);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 19px;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 25px;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: var(--text-muted);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 40px;
  height: 43px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--text-light);
}

.meta-divider {
  color: var(--border-color);
}

.article-featured-img {
  margin-top: -39px;
  position: relative;
  z-index: 1;
}

.article-featured-img img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 14px;
}

.article-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 46px;
}

.article-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 29px 0 15px;
}

.article-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 26px 0 15px;
}

.article-content p {
  color: var(--text-light);
  margin-bottom: 14px;
}

.article-lead {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.article-code-block {
  background: var(--bg-dark);
  border-radius: 13px;
  overflow: hidden;
  margin: 26px 0;
}

.article-code-block .code-header {
  display: flex;
  justify-content: flex-end;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-color);
}

.code-lang {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
}

.article-code-block pre {
  padding: 22px;
  margin: 0;
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 0.875rem;
  color: var(--text-light);
  overflow-x: auto;
}

.article-quote {
  background: rgba(14, 165, 233, 0.05);
  border-left: 4px solid var(--primary);
  padding: 21px 33px;
  margin: 31px 0;
  border-radius: 0 11px 12px 0;
}

.article-quote p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 14px;
}

.article-quote cite {
  color: var(--primary);
  font-weight: 600;
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 23px 0;
}

.article-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.article-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 13px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
}

.article-inline-img {
  border-radius: 10px;
  margin: 22px 0;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 29px;
  border-top: 1px solid var(--border-color);
  margin-top: 29px;
}

.tags-label {
  font-weight: 600;
  color: var(--text-light);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 27px;
}

.share-label {
  font-weight: 600;
  color: var(--text-light);
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 43px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: 8px;
  color: var(--text-light);
  transition: var(--transition);
}

.share-btn:hover {
  color: var(--text-white);
}

.share-btn.twitter:hover {
  background: #1da1f2;
}

.share-btn.linkedin:hover {
  background: #0077b5;
}

.share-btn.facebook:hover {
  background: #4267B2;
}

.article-author-bio {
  display: flex;
  gap: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 30px;
  margin-top: 50px;
}

.author-bio-img {
  width: 81px;
  height: 77px;
  border-radius: 50%;
  object-fit: cover;
}

.author-bio-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.author-bio-role {
  color: var(--primary);
  margin-bottom: 11px;
}

.author-bio-desc {
  color: var(--text-muted);
  margin: 0;
}

.article-navigation {
  display: flex;
  gap: 26px;
  margin-top: 50px;
}

.article-navigation a {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 11px;
  padding: 27px;
  transition: var(--transition);
}

.article-navigation a:hover {
  border-color: var(--primary);
}

.nav-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.nav-title {
  font-weight: 600;
  color: var(--text-white);
}

.nav-next {
  text-align: right;
}

.nav-next .nav-label {
  justify-content: flex-end;
}

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.related-post {
  display: flex;
  gap: 17px;
}

.related-post img {
  width: 81px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}

.related-post h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.related-post h4 a {
  color: var(--text-light);
}

.related-post h4 a:hover {
  color: var(--primary);
}

.related-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.service-hero {
  background: var(--bg-dark-alt);
  padding: 160px 0 82px;
}

.service-hero-content {
  padding-right: 40px;
}

.service-badge {
  display: inline-block;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 49px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 17px;
}

.service-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 21px;
  line-height: 1.1;
}

.service-hero-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 29px;
}

.service-hero-features {
  margin-bottom: 34px;
}

.service-hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.service-hero-features .feature-item i {
  color: var(--accent);
}

.service-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-hero-img img {
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}

.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 19px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.3);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 21px 23px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: var(--bg-dark);
  color: var(--text-white);
  font-weight: 700;
}

.comparison-table th.featured {
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
}

.comparison-table td {
  color: var(--text-light);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table .fa-check {
  color: var(--accent);
  font-size: 1.25rem;
}

.comparison-table .fa-times {
  color: var(--text-muted);
  font-size: 1.25rem;
}

.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 17px;
  overflow: hidden;
  transition: var(--transition);
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 23px 47px rgba(0, 0, 0, 0.3);
}

.case-study-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.case-study-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-category {
  position: absolute;
  top: 15px;
  left: 17px;
  background: var(--primary);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.case-study-content {
  padding: 26px;
}

.case-study-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.case-study-client {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.case-study-excerpt {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.case-study-results {
  display: flex;
  gap: 24px;
  margin-bottom: 23px;
  padding: 18px;
  background: var(--bg-dark);
  border-radius: 12px;
}

.result-item {
  text-align: center;
}

.result-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-img-wrapper {
  position: relative;
}

.about-img {
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -17px;
  right: -21px;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 26px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.exp-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.875rem;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-light);
}

.highlight-item i {
  color: var(--accent);
}

.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 37px;
  height: 100%;
}

.mv-icon {
  width: 67px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 13px;
  font-size: 1.75rem;
  color: var(--text-white);
  margin-bottom: 25px;
}

.mv-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 15px;
}

.mv-text {
  color: var(--text-muted);
  margin: 0;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  padding: 35px;
  height: 100%;
  text-align: left;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
}

.value-icon {
  width: 51px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 8px;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.value-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.value-text {
  color: var(--text-muted);
  margin: 0;
}

.contact-info-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 19px;
  padding: 40px;
  height: 100%;
}

.contact-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 19px;
}

.contact-info-desc {
  color: var(--text-muted);
  margin-bottom: 34px;
}

.contact-info-list {
  margin-bottom: 35px;
}

.contact-info-item {
  display: flex;
  gap: 17px;
  margin-bottom: 24px;
}

.info-icon {
  width: 49px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 11px;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.info-content a,
.info-content p {
  color: var(--text-muted);
  display: block;
  margin: 0;
}

.info-content a:hover {
  color: var(--primary);
}

.contact-social h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 14px;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 43px;
}

.contact-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 35px;
}

.newsletter-form .form-control {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-visual {
    margin-top: 57px;
  }

  .floating-card {
    display: none;
  }

  .blog-card-horizontal {
    flex-direction: column;
  }

  .blog-card-horizontal .blog-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
  }

  .article-author-bio {
    flex-direction: column;
    text-align: center;
  }

  .article-navigation {
    flex-direction: column;
  }

  .service-hero-content {
    padding-right: 0;
    margin-bottom: 41px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding: 61px;
    --element-spacing: 23px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-section {
    padding: 101px 0 57px;
  }

  .page-hero {
    padding: 120px 0 59px;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-wrapper {
    padding: 38px 21px;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .navbar-collapse {
    background: var(--bg-dark-alt);
    padding: 20px;
    border-radius: 10px;
    margin-top: 16px;
    border: 1px solid var(--border-color);
  }

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }

  .case-study-results {
    flex-direction: column;
    gap: 15px;
  }

  .result-item {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 17px;
  }

  .experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 25px;
  }

  .legal-document {
    padding: 27px;
  }

  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 22px;
  }

  .article-content {
    padding: 26px;
  }

  .article-title {
    font-size: 1.75rem;
  }

  .service-hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .service-hero-cta {
    flex-direction: column;
  }

  .service-hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .cta-actions .btn {
    width: 100%;
  }
}
