/* ========================================
   ENTERPRISE SOFTWARE PLATFORM - SOFTDEV_05
   Dark (#0f172a), Electric Blue (#3b82f6), Green (#10b981)
   ======================================== */

:root {
  --primary-color: #228b22;
  --accent-color: #8bc34a;
  --bg-color: #f7f7f7;
  --text-color: #222222;
  --dark-color: #1a1d23;
  --blue-color: #3e8e41;
  --green-color: #32cd32;
  --cyan-color: #34c759;
  --white-color: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #455a64;
  --gray-800: #1a1d23;
  --section-spacing: 120px;
  --element-spacing: 41px;
  --logo-spacing: 58px;
  --container-max: 1300px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-color);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

/* ===== NAVIGATION ===== */
.navbar {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  padding: 21px 0;
  box-shadow: 0 2px 19px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-color) !important;
  gap: 10px;
}

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

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 8px 17px !important;
  margin: 0 4px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color) !important;
}

.dropdown-menu {
  background: var(--white-color);
  border: none;
  box-shadow: 0 13px 41px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 11px;
}

.dropdown-item {
  padding: 8px 21px;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: var(--gray-100);
  color: var(--accent-color);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 31px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--blue-color) 100%);
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(59, 130, 246, 0.4);
}

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

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

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

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

.btn-light {
  background: var(--white-color);
  color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: var(--white-color);
  position: relative;
  overflow: hidden;
  padding-top: 97px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 48px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan-color);
  backdrop-filter: blur(12px);
}

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

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

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

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

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

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

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image {
  border-radius: 17px;
  box-shadow: 0 23px 57px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.floating-card {
  position: absolute;
  background: var(--white-color);
  padding: 19px 21px;
  border-radius: 9px;
  box-shadow: 0 13px 33px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
}

.floating-card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 20%;
  left: -5%;
  animation-delay: 1s;
}

.floating-card-3 {
  top: 50%;
  right: 10%;
  animation-delay: 2s;
}

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

.icon-primary { color: var(--accent-color); }
.icon-accent { color: var(--blue-color); }
.icon-success { color: var(--green-color); }

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

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 var(--logo-spacing);
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: var(--white-color);
  text-align: center;
}

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

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== INTEGRATIONS SECTION ===== */
.integrations-section {
  background: var(--white-color);
  padding: var(--logo-spacing) 0;
}

.logos-marquee {
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  gap: var(--logo-spacing);
  animation: marquee 30s linear infinite;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 150px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

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

.logo-item i {
  color: var(--gray-600);
}

.logo-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--element-spacing);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--gray-100);
}

.feature-card {
  background: var(--white-color);
  padding: var(--element-spacing);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--gray-200);
}

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

.feature-icon {
  width: 77px;
  height: 81px;
  margin: 0 auto 23px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--blue-color) 100%);
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--accent-color), var(--blue-color));
  border-radius: 21px;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-text {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--white-color);
}

.service-card {
  background: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--gray-200);
}

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

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

.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;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(59, 130, 246, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  pointer-events: none;
}

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

.service-overlay i {
  color: var(--white-color);
  position: relative;
  z-index: 1;
}

.service-content {
  padding: 32px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.service-description {
  color: var(--gray-600);
  margin-bottom: 22px;
  line-height: 1.6;
}

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

.service-link:hover {
  gap: 8px;
  color: var(--blue-color);
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: var(--white-color);
}

.stat-card {
  text-align: center;
  padding: var(--element-spacing);
}

.stat-icon {
  width: 81px;
  height: 79px;
  margin: 0 auto 22px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(13px);
}

.stat-icon i {
  font-size: 2rem;
  color: var(--cyan-color);
}

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

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--gray-100);
}

.testimonial-card {
  background: var(--white-color);
  padding: var(--element-spacing);
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

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

.testimonial-rating {
  color: #fbbf24;
  margin-bottom: 18px;
}

.testimonial-rating i {
  font-size: 1.2rem;
  margin-right: 4px;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-top: 20px;
  border-top: 2px solid var(--gray-200);
}

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

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: var(--white-color);
}

.team-card {
  background: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--gray-200);
}

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

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

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

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

.team-social {
  position: absolute;
  bottom: 21px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.team-social-link {
  width: 42px;
  height: 38px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

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

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

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

.team-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.team-bio {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: var(--gray-100);
}

.pricing-card {
  background: var(--white-color);
  border-radius: 8px;
  padding: var(--element-spacing);
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid var(--gray-200);
  position: relative;
}

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

.pricing-card-featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

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

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 32px;
  background: var(--accent-color);
  color: var(--white-color);
  padding: 6px 23px;
  border-radius: 52px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 31px;
  border-bottom: 2px solid var(--gray-200);
}

.pricing-plan {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 13px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 13px;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-600);
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: var(--gray-600);
  margin-left: 8px;
}

.pricing-description {
  color: var(--gray-600);
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 29px;
}

.pricing-features li {
  padding: 14px 0;
  color: var(--text-color);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features i {
  color: var(--green-color);
  margin-top: 4px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--white-color);
}

.accordion-item {
  background: var(--white-color);
  border: 1px solid var(--gray-200);
  border-radius: 8px !important;
  margin-bottom: 18px;
  overflow: hidden;
}

.accordion-button {
  background: var(--white-color);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 26px;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--gray-100);
  color: var(--accent-color);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230066cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 23px;
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--blue-color) 100%);
  padding: var(--logo-spacing) 0;
}

.cta-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: var(--logo-spacing);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* ===== BLOG SECTION ===== */
.blog-grid {
  background: var(--gray-100);
}

.blog-card {
  background: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--gray-200);
}

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

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

.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;
  top: 16px;
  left: 15px;
  background: var(--accent-color);
  color: var(--white-color);
  padding: 6px 18px;
  border-radius: 51px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
}

.blog-content {
  padding: 29px;
}

.blog-meta {
  display: flex;
  gap: 13px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 13px;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--gray-600);
  margin-bottom: 25px;
  line-height: 1.6;
}

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

.blog-link:hover {
  gap: 8px;
  color: var(--blue-color);
}

/* ===== CASE STUDIES ===== */
.case-studies-grid {
  background: var(--gray-100);
}

.case-study-card {
  background: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--gray-200);
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 17px 41px rgba(0, 0, 0, 0.1);
}

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

.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: 32px;
}

.case-study-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.case-study-tag {
  background: var(--gray-200);
  color: var(--gray-600);
  padding: 6px 19px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.case-study-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 15px 0;
}

.case-study-excerpt {
  color: var(--gray-600);
  margin-bottom: 26px;
  line-height: 1.6;
}

.case-study-results {
  display: flex;
  gap: 33px;
  padding-top: 25px;
  border-top: 2px solid var(--gray-200);
}

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

.result-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 8px;
}

.result-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ARTICLE DETAIL ===== */
.article-detail {
  background: var(--white-color);
}

.article-hero {
  padding: 140px 0 var(--element-spacing);
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: var(--white-color);
  text-align: center;
}

.article-category-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.2);
  color: var(--cyan-color);
  padding: 8px 21px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 26px;
  backdrop-filter: blur(9px);
}

.article-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 22px;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.article-featured-image {
  padding: var(--element-spacing) 0;
  background: var(--gray-100);
}

.article-content {
  padding: var(--logo-spacing) 0;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-body .lead {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--element-spacing);
}

.article-body h2 {
  margin-top: var(--element-spacing);
  margin-bottom: 26px;
}

.article-body p {
  margin-bottom: 27px;
  line-height: 1.8;
  color: var(--text-color);
}

.article-list {
  margin: 25px 0;
  padding-left: 25px;
}

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

.article-quote {
  background: var(--gray-100);
  padding: var(--element-spacing);
  border-left: 4px solid var(--accent-color);
  margin: var(--element-spacing) 0;
  position: relative;
}

.article-quote i {
  font-size: 2rem;
  color: var(--accent-color);
  position: absolute;
  top: 25px;
  left: 27px;
  opacity: 0.3;
}

.article-quote blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary-color);
  margin: 0;
  padding-left: 37px;
  line-height: 1.6;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--element-spacing);
  margin-top: var(--element-spacing);
  border-top: 2px solid var(--gray-200);
  flex-wrap: wrap;
  gap: 27px;
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.article-tag {
  background: var(--gray-200);
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 48px;
  font-size: 0.85rem;
  font-weight: 600;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 9px;
}

.share-link {
  width: 41px;
  height: 42px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.3s ease;
}

.share-link:hover {
  background: var(--accent-color);
  color: var(--white-color);
  transform: translateY(-4px);
}

.related-articles {
  padding: var(--logo-spacing) 0;
  background: var(--gray-100);
}

/* ===== SERVICE HERO ===== */
.service-hero {
  padding: 140px 0 var(--logo-spacing);
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: var(--white-color);
}

.service-features {
  background: var(--gray-100);
}

.service-process {
  background: var(--white-color);
}

.process-step {
  background: var(--white-color);
  padding: var(--element-spacing);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid var(--gray-200);
  position: relative;
}

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

.process-number {
  width: 79px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--blue-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-color);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.process-text {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--gray-100);
}

.contact-form-wrapper {
  background: var(--white-color);
  padding: var(--element-spacing);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.form-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 31px;
}

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

.form-control {
  padding: 14px 15px;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.contact-info-wrapper {
  background: var(--white-color);
  padding: var(--element-spacing);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  height: 100%;
}

.info-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 17px;
}

.info-text {
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  gap: 19px;
  margin-bottom: 29px;
  padding-bottom: 29px;
  border-bottom: 2px solid var(--gray-200);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.info-icon {
  width: 57px;
  height: 61px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--blue-color) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.5rem;
  color: var(--white-color);
}

.info-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.info-link {
  color: var(--accent-color);
  display: block;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.info-link:hover {
  color: var(--blue-color);
}

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

.social-link-large {
  width: 48px;
  height: 50px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.3s ease;
}

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

/* ===== LEGAL PAGES ===== */
.legal-content {
  background: var(--white-color);
  padding: var(--logo-spacing) 0;
}

.legal-text {
  background: var(--white-color);
  padding: var(--element-spacing);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.legal-text h2 {
  margin-top: var(--element-spacing);
  margin-bottom: 17px;
}

.legal-text h2:first-child {
  margin-top: 0;
}

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

.legal-text ul {
  margin: 15px 0;
  padding-left: 26px;
}

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

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  background: var(--white-color);
}

.comparison-table {
  width: 100%;
  background: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

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

.comparison-table th {
  padding: 23px;
  color: var(--white-color);
  font-weight: 600;
  text-align: center;
  border: none;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 17px 26px;
  text-align: center;
  color: var(--text-color);
  border: none;
}

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

/* ===== VALUES SECTION ===== */
.values-section {
  background: var(--gray-100);
}

.value-card {
  background: var(--white-color);
  padding: var(--element-spacing);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--gray-200);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 43px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.value-icon {
  width: 80px;
  height: 77px;
  margin: 0 auto 27px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--blue-color) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 17px;
}

.value-text {
  color: var(--gray-600);
  line-height: 1.6;
}

.content-section {
  background: var(--white-color);
}

.content-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 27px;
}

.content-text {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: var(--white-color);
  padding: var(--logo-spacing) 0 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-color) !important;
  gap: 13px;
  margin-bottom: 17px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

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

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

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

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

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

.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 41px 0 23px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  :root {
    --section-spacing: 81px;
    --element-spacing: 33px;
    --logo-spacing: 37px;
  }

  .hero-title { font-size: 2.5rem; }
  .page-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .article-title { font-size: 2.5rem; }
  .cta-title { font-size: 2rem; }

  .navbar-nav {
    padding: 21px 0;
  }

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

  .floating-card {
    display: none;
  }

  .pricing-card-featured {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  :root {
    --section-spacing: 61px;
    --element-spacing: 24px;
    --logo-spacing: 31px;
  }

  h1 { font-size: 2rem; }
  .hero-title { font-size: 2rem; }
  .page-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .article-title { font-size: 2rem; }

  .hero-section {
    min-height: auto;
    padding-top: 79px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

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

  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-step {
    margin-bottom: 22px;
  }
}
