:root {
  --primary-color: #3498db;
  --primary-dark: #2c6f9e;
  --secondary-color: #455a64;
  --accent-color: #8bc34a;
  --bg-light: #f9f9f9;
  --bg-dark: #1a1d23;
  --text-primary: #334155;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --white: #ffffff;
  --success: #8bc34a;
  --warning: #f7dc6f;
  --danger: #e74c3c;
  --info: #06b6d4;
  --container-width: 1300px;
  --section-padding: 120px;
  --element-spacing: 47px;
  --logo-spacing: 58px;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

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

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

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

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

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

.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.navbar-brand .site-name {
  margin-left: 9px;
}

.bg-enterprise {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
}

.navbar-dark .nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 15px;
  margin: 0 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar-dark .nav-link:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.dropdown-menu-dark {
  background-color: var(--secondary-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 11px 31px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
  padding: 11px 18px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-demo {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 27px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-demo:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 13px rgba(0, 102, 204, 0.3);
}

.hero-enterprise {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e3a5f 100%);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-enterprise::before {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
}

.hero-bg-gradient {
  position: absolute;
  pointer-events: none;
  bottom: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 21px;
}

.hero-lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 47px;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  text-align: left;
}

.hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-cta .btn {
  padding: 17px 34px;
  font-size: 1.1rem;
}

.hero-image-wrapper {
  position: relative;
}

.hero-floating-card {
  position: absolute;
  background-color: var(--white);
  padding: 17px;
  border-radius: 15px;
  box-shadow: 0 13px 41px rgba(0, 0, 0, 0.15);
  text-align: center;
  font-size: 0.9rem;
  z-index: 10;
  pointer-events: none;
}

.hero-floating-card.card-1 {
  top: 10%;
  right: -5%;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-2 {
  bottom: 30%;
  left: -10%;
  animation: float 8s ease-in-out infinite;
}

.hero-floating-card.card-3 {
  bottom: 10%;
  right: 5%;
  animation: float 7s ease-in-out infinite;
}

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

.section-label {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.2;
}

.section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bg-light-enterprise {
  background-color: var(--bg-light);
}

.bg-dark-enterprise {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
  color: var(--white);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.feature-card {
  background-color: var(--white);
  border-radius: 9px;
  padding: 46px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 61px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 69px;
  height: 71px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0052a3 100%);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 21px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 13px;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-card {
  background-color: var(--white);
  border-radius: 9px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 19px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 19px 63px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 77, 153, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-overlay i {
  font-size: 3rem;
  color: var(--white);
}

.service-content {
  padding: 33px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 17px;
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 21px;
  flex-grow: 1;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.service-link:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

.tech-stack-section {
  border-top: 1px solid var(--border-color);
}

.tech-badge {
  background-color: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 13px;
  padding: 23px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.tech-badge:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.1);
}

.tech-badge i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.tech-badge span {
  display: block;
  font-weight: 600;
  color: var(--secondary-color);
}

.code-showcase-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
}

.code-showcase-section .section-title,
.code-showcase-section .section-description,
.code-showcase-section .section-label {
  color: var(--white);
}

.feature-list li {
  padding: 15px 0;
}

.code-block {
  background-color: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 23px 60px rgba(0, 0, 0, 0.3);
}

.code-header {
  background-color: #0f172a;
  padding: 17px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.code-lang {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 600;
}

.code-dots {
  display: flex;
  gap: 8px;
}

.code-dots span {
  width: 10px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--text-secondary);
}

.code-content {
  padding: 25px;
  overflow-x: auto;
}

.code-content pre {
  margin: 0;
  color: #e2e8f0;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.stat-box {
  text-align: center;
  padding: 34px;
}

.stat-box .stat-icon {
  font-size: 3rem;
  color: var(--primary-color);
}

.stat-box .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-box .stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 14px;
  padding: 45px;
  box-shadow: 0 4px 21px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 23px 61px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-image {
  width: 61px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

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

.author-role {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.clients-logos-section {
  margin-top: var(--logo-spacing);
  padding-top: var(--logo-spacing);
  border-top: 1px solid var(--border-color);
}

.logos-carousel {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 46px;
}

.logo-item {
  flex: 0 0 auto;
}

.client-logo {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.team-card {
  background-color: var(--white);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 4px 17px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.95) 0%, rgba(0, 77, 153, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.social-icon:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-4px);
}

.team-content {
  padding: 22px;
  text-align: center;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.team-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--secondary-color);
  padding: 18px 24px;
  font-size: 1.1rem;
}

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

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

.faq-accordion .accordion-body {
  padding: 24px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta-section {
  padding: 82px 0;
}

.cta-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.case-study-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 63px rgba(0, 0, 0, 0.15);
}

.case-study-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.case-study-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image {
  transform: scale(1.1);
}

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

.case-study-tag {
  display: inline-block;
  background-color: var(--bg-light);
  color: var(--primary-color);
  padding: 6px 13px;
  border-radius: 18px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 17px;
}

.case-study-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 9px;
}

.case-study-client {
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 14px;
}

.case-study-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.case-study-challenge,
.case-study-solution {
  margin-bottom: 26px;
}

.case-study-stats {
  display: flex;
  gap: 33px;
  padding: 22px 0;
  border-top: 1px solid var(--border-color);
  margin-top: 26px;
}

.case-study-stats .stat-item {
  text-align: center;
}

.case-study-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.case-study-stats .stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.tech-tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.tech-tag {
  background-color: var(--bg-light);
  color: var(--text-secondary);
  padding: 6px 13px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-enterprise {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 77px 0 43px;
}

.footer-brand .site-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 26px;
}

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

.social-link {
  width: 44px;
  height: 47px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-4px);
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 26px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 8px;
}

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

.footer-contact li {
  margin-bottom: 19px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 63px;
  padding-top: 35px;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 26px;
  justify-content: center;
}

.footer-legal li {
  display: inline-block;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

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

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 21px;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--white);
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.page-lead {
  font-size: 1.2rem;
  line-height: 1.6;
}

.timeline {
  position: relative;
  padding: 0 0 0 41px;
}

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

.timeline-item {
  position: relative;
  margin-bottom: 41px;
}

.timeline-marker {
  position: absolute;
  pointer-events: none;
  left: -46px;
  top: 0;
  width: 17px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 3px solid var(--white);
}

.timeline-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-year {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-title {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 13px;
}

.timeline-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.mission-values .value-item {
  padding: 21px;
  background-color: var(--bg-light);
  border-radius: 12px;
}

.value-icon {
  width: 62px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.certification-badge {
  background-color: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 13px;
  padding: 41px 23px;
  text-align: center;
  transition: all 0.3s ease;
}

.certification-badge:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 22px 59px rgba(0, 0, 0, 0.1);
}

.certification-badge i {
  font-size: 3rem;
  display: block;
}

.process-step {
  text-align: center;
  padding: 34px;
  background-color: var(--white);
  border-radius: 10px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 23px 57px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
  opacity: 0.3;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 11px;
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 46px;
  border-radius: 13px;
  box-shadow: 0 4px 19px rgba(0, 0, 0, 0.08);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.contact-info-wrapper {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
  padding: 44px;
  border-radius: 11px;
  color: var(--white);
}

.contact-info-wrapper h3,
.contact-info-wrapper h4 {
  color: var(--white);
}

.contact-icon {
  width: 50px;
  height: 51px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--white);
}

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

.social-link-contact {
  width: 42px;
  height: 46px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-contact:hover {
  background-color: var(--primary-color);
  transform: translateY(-4px);
}

.blog-card {
  background-color: var(--white);
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  pointer-events: none;
  top: 20px;
  left: 17px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 21px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-content {
  padding: 33px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 19px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 14px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 13px;
}

.blog-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 27px;
  flex-grow: 1;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.blog-link:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

.article-hero {
  padding: 140px 0 82px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.article-category {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 18px;
  font-size: 0.875rem;
  font-weight: 600;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.2;
}

.article-meta {
  display: flex;
  gap: 24px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.article-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-text h2 {
  margin-top: 45px;
  margin-bottom: 21px;
  font-weight: 600;
  color: var(--secondary-color);
}

.article-text h3 {
  margin-top: 30px;
  margin-bottom: 19px;
  font-weight: 600;
  color: var(--secondary-color);
}

.article-text p {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.article-highlight {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  border-left: 4px solid var(--primary-color);
  padding: 31px;
  border-radius: 0 15px 15px 0;
  position: relative;
}

.article-highlight i {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 13px;
}

.highlight-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.highlight-author {
  font-weight: 600;
  color: var(--primary-color);
}

.article-list {
  padding-left: 23px;
  margin-bottom: 26px;
}

.article-list li {
  margin-bottom: 9px;
  color: var(--text-primary);
}

.article-image {
  text-align: center;
}

.image-caption {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}

.article-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 45px;
  border-radius: 9px;
  text-align: center;
}

.article-cta h3 {
  color: var(--white);
}

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

.article-tags .tag {
  display: inline-block;
  background-color: var(--bg-light);
  color: var(--text-secondary);
  padding: 6px 19px;
  border-radius: 22px;
  font-size: 0.875rem;
  margin-right: 8px;
  margin-top: 8px;
}

.pricing-card {
  background-color: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 9px;
  padding: 47px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 17px 59px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card-featured {
  border-color: var(--primary-color);
  border-width: 3px;
  transform: scale(1.05);
}

.pricing-card-featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  pointer-events: none;
  top: -13px;
  right: 25px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 17px;
  border-radius: 17px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-plan {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 14px;
}

.pricing-description {
  color: var(--text-secondary);
  margin-bottom: 21px;
}

.pricing-price {
  margin-bottom: 33px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  color: var(--text-secondary);
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 34px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table thead {
  background-color: var(--bg-light);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  font-weight: 600;
  color: var(--secondary-color);
}

.comparison-table .featured-column {
  background-color: rgba(0, 102, 204, 0.05);
}

.service-hero {
  padding: 140px 0 79px;
}

.service-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-hero-lead {
  font-size: 1.2rem;
  line-height: 1.6;
}

.service-benefit-card {
  background-color: var(--white);
  border-radius: 11px;
  padding: 33px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.service-benefit-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 21px 60px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--primary-color);
}

.feature-list-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  background-color: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-list-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 27px rgba(0, 0, 0, 0.08);
}

.feature-list-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.legal-page {
  padding: 97px 0 78px;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.legal-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.legal-content h2 {
  margin-top: 46px;
  margin-bottom: 26px;
  font-weight: 600;
  color: var(--secondary-color);
}

.legal-content p {
  margin-bottom: 25px;
  color: var(--text-primary);
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 25px;
  padding-left: 27px;
}

.legal-content li {
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.6;
}

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

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

  .section-padding {
    padding: 77px 0;
  }

  .navbar-collapse {
    background-color: var(--secondary-color);
    padding: 18px;
    border-radius: 15px;
    margin-top: 15px;
  }

  .hero-stats {
    gap: 21px;
  }

  .logos-carousel {
    gap: 23px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 14px;
  }
}

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

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

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

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

  .case-study-stats {
    flex-direction: column;
    gap: 13px;
  }

  .timeline {
    padding-left: 28px;
  }

  .timeline-marker {
    left: -38px;
  }
}
