/* ═══════════════════════════════════
   INDEX.HTML STYLES
═══════════════════════════════════ */

/* Hero V2 */
.hero-v2 {
  position: relative;
  padding: 130px 40px 50px;
  background: #0b192c url('../images/HeroImage1.png') center right / cover no-repeat;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-v2-bg {
  display: none;
}

.hero-v2-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 2vw;
}

.hero-v2-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 750px;
}

.hero-v2-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.hero-v2-title .text-blue {
  color: var(--blue-400);
}

.hero-v2-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.hero-v2-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  line-height: 1.6;
  margin: 0;
}

.hero-v2-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-v2-actions .btn-primary {
  background: var(--blue-500);
}

.hero-v2-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  align-items: flex-start;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  font-weight: 500;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Services V2 */
.services-v2-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.service-v2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.service-v2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(32, 96, 216, 0.08);
  border-color: rgba(32, 96, 216, 0.2);
}

.sv-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  color: var(--blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sv-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.sv-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sv-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.5;
}

.sv-link {
  color: var(--blue-600);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.sv-link:hover {
  color: var(--blue-700);
  text-decoration: underline;
}

/* Impact Section */
.impact-section {
  background: #081028;
  padding: 24px 20px;
  color: #fff;
  overflow: hidden;
}

.impact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
}

.impact-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
}

.impact-stats {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.impact-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.impact-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.is-icon {
  color: var(--blue-400);
  margin-bottom: 4px;
}

.is-num {
  font-size: 40px;
  font-weight: 800;
  font-family: 'Exo 2', sans-serif;
  line-height: 1;
  color: #fff;
}

.is-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.impact-image {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  width: 90%;
  max-width: 550px;
  margin-left: auto;
}

.impact-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Industries V2 */
.industry-v2-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.industry-v2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.industry-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--blue-300);
}

.ind-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--blue-500);
  transition: all 0.3s ease;
}

.industry-v2-card:hover .ind-icon {
  background: var(--blue-50);
  transform: scale(1.1);
}

.ind-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

/* Process Section */
.process-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}

.process-step {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: var(--text-muted);
  font-size: 24px;
  padding: 0 8px;
}

.ps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ps-num {
  font-size: 24px;
  font-weight: 800;
  font-family: 'Exo 2', sans-serif;
  color: var(--text-muted);
  opacity: 0.5;
}

.ps-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}

.ps-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.ps-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Testimonials V2 */
.testimonial-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-v2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
}

.test-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 72px;
}

.test-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 20px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ta-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ta-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.ta-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* CTA V2 */
.cta-v2-container {
  width: 100%;
  background: #0044cc;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  color: #fff;
  margin-bottom: 60px;
}

.cta-v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-v2-bg img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.9;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: overlay;
}

.cta-v2-inner {
  max-width: 1200px;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-v2-content {
  flex: 1;
  min-width: 320px;
}

.cta-v2-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.cta-v2-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

.cta-v2-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* CTA background image variant (used on 404 and other pages) */
.cta-v2-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}

.cta-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0, 68, 204, 0.95) 0%, rgba(0, 68, 204, 0.7) 60%, rgba(0, 68, 204, 0.5) 100%);
  pointer-events: none;
}

/* CTA button variants */
.cta-v2-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: #0044cc;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-v2-btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-v2-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-v2-btn-wa:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {

  .hero-v2-inner,
  .impact-inner {
    grid-template-columns: 1fr;
  }

  .hero-v2-image img {
    max-width: 500px;
  }

  .hero-v2 {
    text-align: center;
  }

  .hero-v2-actions {
    justify-content: center;
  }

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

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

  .process-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

@media (max-width: 600px) {

  .services-v2-grid,
  .impact-stats,
  .testimonial-v2-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-v2-trust {
    grid-template-columns: 1fr;
  }

  .hero-v2-title {
    font-size: 32px;
  }
}

/* ═══════════════════════════════════
   CONTACT V2 STYLES
═══════════════════════════════════ */

/* Hero Section */
.contact-v2-hero {
  position: relative;
  padding: 140px 40px 80px;
  overflow: hidden;
  color: #fff;
}

.cv2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cv2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 15, 36, 0.95) 0%, rgba(5, 15, 36, 0.7) 30%, rgba(5, 15, 36, 0) 50%);
}

.cv2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cv2-hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cv2-hero-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cv2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.cv2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  padding-right: 20px;
}

.cv2-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Contact Grid */
.contact-v2-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-v2-form-card,
.contact-v2-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
}

.cv2-card-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cv2-card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Form Styles */
.cv2-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cv2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cv2-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cv2-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.cv2-form-group .req {
  color: #ef4444;
}

.cv2-form-group input,
.cv2-form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s;
  background: #fff;
}

.cv2-form-group input:focus,
.cv2-form-group textarea:focus {
  border-color: var(--blue-400);
  outline: none;
}

.cv2-phone-input {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.cv2-country-code {
  padding: 0 12px;
  background: #f8fafc;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  cursor: pointer;
}

.cv2-phone-input input {
  border: none;
  border-radius: 0;
  flex: 1;
}

.cv2-phone-input input:focus {
  outline: none;
}

.cv2-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.cv2-safe-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Info Cards */
.contact-v2-info-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cv2-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cv2-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv2-info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.cv2-info-text h4 span {
  color: var(--text-muted);
  font-weight: 400;
}

.cv2-info-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 2px 0;
}

.cv2-info-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Map Section */
.contact-v2-map-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cv2-map-embed {
  width: 100%;
  height: 100%;
}

.cv2-map-box {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 400px;
  z-index: 10;
  border: 1px solid var(--border);
}

.cv2-map-box-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv2-map-box-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.cv2-map-box-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

/* FAQ Grid */
.contact-v2-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.cv2-section-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.cv2-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cv2-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cv2-faq-item.active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: var(--blue-300);
}

.cv2-faq-btn {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.cv2-faq-btn:hover {
  background: #f8fafc;
}

.cv2-faq-item.active .cv2-faq-btn {
  color: var(--blue-600);
}

.cv2-faq-icon {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.cv2-faq-item.active .cv2-faq-icon {
  transform: rotate(180deg);
  color: var(--blue-600);
}

.cv2-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cv2-faq-item.active .cv2-faq-content {
  max-height: 200px;
}

.cv2-faq-content p {
  padding: 0 20px 20px 52px;
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cv2-faq-link {
  color: var(--blue-600);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cv2-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cv2-features-grid .cv2-feature-card:last-child {
  grid-column: span 2;
}

.cv2-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cv2-fc-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv2-feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cv2-feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .contact-v2-grid {
    grid-template-columns: 1fr;
  }

  .contact-v2-faq-grid {
    grid-template-columns: 1fr;
  }

  .cv2-map-box {
    top: auto;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: none;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .cv2-hero-title {
    font-size: 36px;
  }

  .cv2-form-row {
    grid-template-columns: 1fr;
  }

  .cv2-form-footer {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .cv2-features-grid {
    grid-template-columns: 1fr;
  }

  .cv2-features-grid .cv2-feature-card:last-child {
    grid-column: span 1;
  }

  .contact-v2-form-card,
  .contact-v2-info-card {
    padding: 24px;
  }
}

/* ═══════════════════════════════════
   SERVICES V2 STYLES
═══════════════════════════════════ */

/* Services Hero */
.sv2-hero {
  position: relative;
  padding: 140px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #081225;
}

.sv2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sv2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 37, 0.95) 0%, rgba(8, 18, 37, 0.85) 40%, rgba(8, 18, 37, 0.3) 100%);
}

.sv2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sv2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sv2-hero-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sv2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.sv2-hero-subtitle {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-300);
  margin: 0;
}

.sv2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.sv2-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Trust Bar */
.sv2-trust-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
}

.sv2-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.sv2-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sv2-trust-icon {
  color: var(--blue-500);
  display: flex;
  align-items: center;
}

.sv2-trust-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.sv2-trust-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Services List */
.sv2-services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sv2-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr 1.5fr auto auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.sv2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-300);
}

.sv2-card-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sv2-card-text-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sv2-card-text-col h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.sv2-card-text-col p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.sv2-card-text-col a {
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.sv2-card-text-col a:hover {
  text-decoration: underline;
}

.sv2-card-features-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid var(--border);
  padding-left: 32px;
}

.sv2-card-features-col li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.sv2-card-features-col svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sv2-card-img-col {
  width: 280px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.sv2-card-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.sv2-card-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sv2-card:hover .sv2-card-arrow-btn {
  background: var(--blue-500);
  color: #fff;
  border-color: var(--blue-500);
}

@media (max-width: 1200px) {
  .sv2-card {
    grid-template-columns: auto 1fr auto auto;
  }

  .sv2-card-features-col {
    display: none;
  }
}

@media (max-width: 900px) {
  .sv2-hero-inner {
    grid-template-columns: 1fr;
  }

  .sv2-hero-empty {
    display: none;
  }

  .sv2-trust-inner {
    justify-content: flex-start;
    gap: 32px;
  }

  .sv2-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sv2-card-icon-col {
    display: none;
  }

  .sv2-card-img-col {
    width: 100%;
    height: 200px;
  }

  .sv2-card-action-col {
    display: none;
  }

  .sv2-card-text-col a {
    display: inline-block;
    padding: 10px 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--border);
    width: fit-content;
  }
}

/* ═══════════════════════════════════
   ABOUT V2 STYLES
═══════════════════════════════════ */

/* About Hero */
.av2-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #081225;
}

.av2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.av2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 37, 0.95) 0%, rgba(8, 18, 37, 0.85) 40%, rgba(8, 18, 37, 0.3) 100%);
}

.av2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.av2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.av2-hero-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.av2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.av2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.av2-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Our Story Grid */
.av2-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.av2-story-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  height: 400px;
}

.av2-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Bar */
.av2-stats-bar {
  background: #0b192c;
  padding: 40px 20px;
  color: #fff;
}

.av2-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

.av2-stat-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 10px;
  gap: 8px;
}

.av2-stat-icon {
  color: var(--blue-400);
  margin-bottom: 8px;
}

.av2-stat-number {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--blue-400);
  line-height: 1;
}

.av2-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  font-weight: 500;
}

/* Mission Vision Values */
.av2-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.av2-mvv-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.av2-mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-300);
}

.av2-mvv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.av2-mvv-content h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text-primary);
}

.av2-mvv-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.av2-mvv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.av2-mvv-list li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.av2-mvv-list svg {
  width: 16px;
  height: 16px;
  color: var(--blue-500);
}

/* Leadership Team Grid */
.av2-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.av2-team-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.av2-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-300);
}

.av2-team-img {
  width: 100%;
  height: 240px;
  background: #e2e8f0;
  overflow: hidden;
}

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

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

.av2-team-info {
  padding: 24px;
}

.av2-team-info h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--text-primary);
}

.av2-team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  display: block;
  margin-bottom: 12px;
}

.av2-team-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.av2-team-socials {
  display: flex;
  gap: 12px;
}

.av2-team-socials a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.av2-team-socials a:hover {
  color: var(--blue-600);
}

/* Trust Features */
.av2-trust-features {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.av2-tf-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
}

.av2-tf-icon {
  color: var(--blue-500);
}

.av2-tf-content h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--text-primary);
}

.av2-tf-content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .av2-mvv-grid {
    grid-template-columns: 1fr;
  }

  .av2-mvv-card {
    flex-direction: column;
  }

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

  .av2-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
  }

  .av2-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .av2-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .av2-team-grid {
    grid-template-columns: 1fr;
  }

  .av2-tf-item {
    width: 100%;
    flex: none;
  }
}

/* ═══════════════════════════════════
   FREE CONSULTATION V2 STYLES
═══════════════════════════════════ */

/* FC Hero */
.fcv2-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #081225;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.fcv2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fcv2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fcv2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 37, 0.98) 0%, rgba(8, 18, 37, 0.9) 50%, rgba(8, 18, 37, 0.4) 100%);
}

.fcv2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: center;
}

.fcv2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #fff;
}

.fcv2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.fcv2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 500px;
}

.fcv2-hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.fcv2-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fcv2-check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--blue-500);
  color: var(--blue-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fcv2-check-icon svg {
  width: 16px;
  height: 16px;
}

.fcv2-check-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #e2e8f0;
}

.fcv2-trusted-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
}

.fcv2-tb-avatars {
  display: flex;
}

.fcv2-tb-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #081225;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  overflow: hidden;
}

.fcv2-tb-avatar svg {
  width: 20px;
  height: 20px;
}

.fcv2-tb-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.fcv2-tb-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* FC Form Card */
.fcv2-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  color: var(--text-primary);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.fcv2-form-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-align: center;
}

.fcv2-form-card p {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.fcv2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fcv2-form-group {
  margin-bottom: 16px;
}

.fcv2-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.fcv2-form-group label span {
  color: #ef4444;
}

.fcv2-form-card input,
.fcv2-form-card select,
.fcv2-form-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
  background: #fff;
}

.fcv2-form-card input:focus,
.fcv2-form-card select:focus,
.fcv2-form-card textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(11, 102, 195, 0.1);
}

.fcv2-form-card input::placeholder,
.fcv2-form-card textarea::placeholder {
  color: #94a3b8;
}

.fcv2-select-wrapper {
  position: relative;
}

.fcv2-select-wrapper select {
  appearance: none;
  padding-right: 36px;
}

.fcv2-select-wrapper svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.fcv2-phone-input {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.fcv2-phone-input:focus-within {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(11, 102, 195, 0.1);
}

.fcv2-phone-prefix {
  background: #f8fafc;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-right: 1px solid var(--border);
  cursor: pointer;
}

.fcv2-phone-input input {
  border: none;
  border-radius: 0;
}

.fcv2-phone-input input:focus {
  box-shadow: none;
  border: none;
}

.fcv2-submit-btn {
  width: 100%;
  background: var(--blue-600);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.fcv2-submit-btn:hover {
  background: var(--blue-700);
}

.fcv2-form-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  text-align: center;
}

/* Benefits Grid */
.fcv2-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fcv2-benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.fcv2-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--blue-300);
}

.fcv2-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.fcv2-benefit-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text-primary);
}

.fcv2-benefit-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Process Timeline Section */
.fcv2-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fcv2-process-img {
  position: relative;
}

.fcv2-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.fcv2-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #cbd5e1, #cbd5e1 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.fcv2-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 25%;
}

.fcv2-step-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 2px solid var(--blue-100);
  color: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fcv2-step-num {
  position: absolute;
  bottom: -8px;
  width: 20px;
  height: 20px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.fcv2-step-text h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--text-primary);
}

.fcv2-step-text p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
  padding: 0 10px;
}

/* Ideal For Grid */
.fcv2-ideal-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.fcv2-ideal-item {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid var(--border);
}

.fcv2-ideal-item:last-child {
  border-right: none;
}

.fcv2-ideal-icon {
  color: var(--blue-600);
}

.fcv2-ideal-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Testimonials Grid */
.fcv2-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 40px;
  align-items: center;
}

.fcv2-testimonials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fcv2-testimonial-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
}

.fcv2-tc-quote {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: var(--blue-200);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
  pointer-events: none;
}

.fcv2-testimonial-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
}

.fcv2-tc-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.fcv2-tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.fcv2-tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  overflow: hidden;
}

.fcv2-tc-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.fcv2-tc-author span {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .fcv2-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .fcv2-hero-overlay {
    background: rgba(8, 18, 37, 0.85);
  }

  .fcv2-hero-desc,
  .fcv2-hero-checks,
  .fcv2-trusted-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .fcv2-form-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }

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

  .fcv2-process-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fcv2-process-img {
    max-width: 600px;
    margin: 0 auto;
  }

  .fcv2-testimonials-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fcv2-testimonials-text a {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .fcv2-hero-checks {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fcv2-check-item {
    justify-content: center;
  }

  .fcv2-form-row {
    grid-template-columns: 1fr;
  }

  .fcv2-timeline {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .fcv2-timeline::before {
    display: none;
  }

  .fcv2-timeline-step {
    width: 100%;
    max-width: 300px;
  }

  .fcv2-ideal-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .fcv2-ideal-item:last-child {
    border-bottom: none;
  }

  .fcv2-testimonials-cards {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════
   AI AUTOMATION V2 STYLES
═══════════════════════════════════ */

/* AI Hero */
.ai-hero-v2 {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #040b16;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.ai-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ai-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}

.ai-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.85) 40%, rgba(4, 11, 22, 0.45) 65%, rgba(4, 11, 22, 0.75) 100%);
}

.ai-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ai-hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-400);
  width: fit-content;
}

.ai-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.ai-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.ai-hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0;
}

.ai-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.ai-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--blue-500);
}

.ai-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* AI Hero Graphic (right-side image) */
.ai-hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ai-hero-graphic-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.ai-hero-graphic-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 28px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ai-hero-graphic-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 1;
  object-fit: cover;
}

/* AI Benefits Grid */
.ai-benefits-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ai-benefit-card {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.ai-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.ai-bc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid var(--border);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ai-benefit-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.ai-benefit-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* AI Solutions Grid */
.ai-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ai-solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 24px;
  transition: all 0.3s ease;
}

.ai-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--blue-300);
}

.ai-sc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-sc-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-sc-content h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.ai-sc-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.ai-sc-content a {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
}

.ai-sc-content a:hover {
  text-decoration: underline;
}

/* Process Timeline */
.ai-process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.ai-process-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200), var(--blue-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.ai-pt-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 10px;
}

.ai-pt-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-100);
  color: var(--blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ai-pt-num {
  position: absolute;
  top: 48px;
  width: 24px;
  height: 24px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.ai-pt-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--text-primary);
}

.ai-pt-step p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* Use Cases */
.ai-usecases-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.ai-uc-col {
  flex: 1;
  min-width: 160px;
}

.ai-uc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px 0;
}

.ai-uc-title svg {
  color: var(--blue-500);
}

.ai-uc-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-uc-col li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.ai-uc-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-400);
  font-weight: bold;
  font-size: 12px;
}

/* Impact Dashboard */
.ai-impact-dashboard {
  background: #081225;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  color: #fff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.ai-id-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ai-id-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1px;
  margin-bottom: 8px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 4px 10px;
  border-radius: 12px;
}

.ai-id-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.ai-id-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0 0 32px 0;
}

.ai-id-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ai-id-stat h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-400);
  margin: 0 0 4px 0;
  line-height: 1;
}

.ai-id-stat p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.3;
}

.ai-id-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ai-css-chart {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.ai-chart-header {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.ai-chart-area {
  flex: 1;
  position: relative;
  min-height: 150px;
}

.ai-chart-svg {
  width: 100%;
  height: 100%;
}

.ai-chart-legend {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: center;
}

.ai-chart-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.ai-chart-legend span span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ai-chart-metrics {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.ai-cm-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ai-cm-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.ai-cm-item strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.ai-cm-item small {
  font-size: 11px;
  font-weight: 600;
}

.text-green {
  color: #10b981;
}

/* Tech Logos */
.ai-tech-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.ai-tech-logo {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Exo 2', sans-serif;
  color: var(--text-muted);
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .ai-solutions-grid {
    grid-template-columns: 1fr;
  }

  .ai-impact-dashboard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ai-process-timeline {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .ai-process-timeline::before {
    display: none;
  }

  .ai-pt-step {
    width: 100%;
    max-width: 300px;
  }

  .ai-pt-num {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
  }

  .ai-chart-metrics {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════
   CASE STUDIES V2 STYLES
═══════════════════════════════════ */

/* Portfolio Hero */
.cs2-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #040b16;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.cs2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cs2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.9) 50%, rgba(4, 11, 22, 0.6) 100%);
}

.cs2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.cs2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs2-hero-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cs2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.cs2-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 16px 0;
  max-width: 500px;
}

.cs2-hero-metrics {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.cs2-hm-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs2-hm-icon {
  color: var(--blue-500);
}

.cs2-hm-text {
  display: flex;
  flex-direction: column;
}

.cs2-hm-text strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.cs2-hm-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Dashboard UI */
.cs2-hero-dashboard {
  position: relative;
}

.cs2-dash-main {
  background: rgba(11, 25, 44, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.cs2-dash-header {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cs2-dash-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.cs2-dash-chart {
  display: flex;
  flex-direction: column;
}

.cs2-chart-info {
  margin-bottom: 16px;
}

.cs2-chart-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.cs2-ci-val {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.cs2-ci-val small {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
}

.cs2-line-chart {
  width: 100%;
  height: auto;
  margin-top: auto;
}

.cs2-dash-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 24px;
}

.cs2-dm-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 12px;
}

.cs2-dm-box span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 4px;
}

.cs2-dm-val {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs2-dm-val .text-green {
  font-size: 11px;
  color: #10b981;
  font-family: 'Inter', sans-serif;
}

.cs2-dash-float {
  position: absolute;
  left: -40px;
  bottom: -40px;
  background: rgba(11, 25, 44, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cs2-dash-float span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.cs2-dash-float small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.cs2-radial {
  position: relative;
  width: 80px;
  height: 80px;
}

.cs2-radial svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.cs2-radial-val {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.cs2-radial-val span {
  font-size: 9px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* Filters */
.cs2-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.cs2-filter-btn {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}

.cs2-filter-btn svg {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.cs2-filter-btn:hover {
  border-color: var(--blue-300);
  background: #f8fafc;
}

.cs2-filter-btn.active {
  background: var(--blue-600);
  color: #fff;
  border-color: var(--blue-600);
}

.cs2-filter-btn.active svg {
  color: #fff;
}

/* Grid & Cards */
.cs2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cs2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.cs2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-300);
}

.cs2-card-img {
  width: 100%;
  height: 200px;
  background: #f1f5f9;
  overflow: hidden;
}

.cs2-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.cs2-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cs2-card-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cs2-card-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.cs2-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 24px 0;
  flex: 1;
}

.cs2-card-metrics {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 20px;
}

.cs2-cm-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs2-cm-item strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-600);
}

.cs2-cm-item span {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.3;
}

.cs2-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cs2-card-link:hover {
  text-decoration: underline;
}

/* Impact Bar */
.cs2-impact-bar {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cs2-impact-bar h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  min-width: 200px;
}

.cs2-ib-stats {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cs2-ib-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs2-ib-item svg {
  color: var(--blue-500);
}

.cs2-ib-item div {
  display: flex;
  flex-direction: column;
}

.cs2-ib-item strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.cs2-ib-item span {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Testimonial Block */
.cs2-testimonial {
  background: #081225;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  color: #fff;
}

.cs2-t-quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--blue-500);
  line-height: 0.8;
  height: 40px;
}

.cs2-t-text {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.cs2-t-author-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 32px;
  min-width: 250px;
}

.cs2-t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs2-t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  overflow: hidden;
}

.cs2-t-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.cs2-t-author span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.cs2-t-stars {
  color: #fbbf24;
  font-size: 12px;
  letter-spacing: 2px;
}

/* Bottom CTA Layout */
.cs2-bottom-cta {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cs2-bc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs2-bc-content {
  flex: 1;
}

.cs2-bc-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.cs2-bc-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.cs2-bc-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cs2-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs2-hero-dashboard {
    max-width: 600px;
    margin: 0 auto;
  }

  .cs2-dash-float {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    padding: 12px 20px;
  }

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

  .cs2-testimonial {
    flex-direction: column;
    gap: 24px;
  }

  .cs2-t-author-box {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cs2-dash-body {
    grid-template-columns: 1fr;
  }

  .cs2-dash-metrics {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cs2-dm-box {
    flex: 1;
    min-width: 120px;
  }

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

  .cs2-impact-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .cs2-bottom-cta {
    flex-direction: column;
    text-align: center;
  }

  .cs2-bc-actions {
    flex-direction: column;
    width: 100%;
  }

  .cs2-bc-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════
   INDUSTRIES V2 STYLES
═══════════════════════════════════ */

/* Industries Hero */
.ind2-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #040b16;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.ind2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ind2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ind2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 11, 22, 0.95) 0%, rgba(4, 11, 22, 0.7) 50%, rgba(4, 11, 22, 0.2) 100%);
}

.ind2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.ind2-hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ind2-hero-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ind2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.ind2-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 16px 0;
  max-width: 500px;
}

.ind2-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Quick Nav Icons */
.ind2-icon-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
}

.ind2-icon-grid::-webkit-scrollbar {
  height: 6px;
}

.ind2-icon-grid::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.ind2-icon-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.ind2-icon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--text-primary);
  min-width: 120px;
}

.ind2-icon-card:hover {
  border-color: var(--blue-300);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.ind2-ic-icon {
  color: var(--blue-500);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind2-icon-card span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

/* Detailed Cards Grid */
.ind2-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ind2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  position: relative;
}

.ind2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-300);
}

.ind2-card-img {
  width: 100%;
  height: 160px;
  background: #f1f5f9;
  overflow: hidden;
}

.ind2-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.ind2-card-body {
  padding: 32px 24px 24px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ind2-card-icon {
  position: absolute;
  top: -20px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.ind2-card-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.ind2-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Impact Banner */
.ind2-impact-banner {
  background: #081225;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ind2-ib-left {
  min-width: 250px;
  flex-shrink: 0;
}

.ind2-ib-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.ind2-ib-left h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.ind2-ib-stats {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 40px;
}

.ind2-ib-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.ind2-ib-stat svg {
  color: var(--blue-500);
}

.ind2-ib-stat strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: var(--blue-200);
}

.ind2-ib-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/* Why Choose Us Row */
.ind2-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ind2-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ind2-f-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ind2-f-text h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.ind2-f-text p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Bottom CTA */
.ind2-bottom-cta {
  background: #081225 url('../images/v2/AIdevelopment.jpg') center/cover no-repeat;
  position: relative;
  border-radius: 16px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  flex-wrap: wrap;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ind2-bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 37, 0.85);
  z-index: 0;
}

.ind2-bc-content,
.ind2-bc-actions {
  position: relative;
  z-index: 1;
}

.ind2-bc-content {
  flex: 1;
  color: #fff;
}

.ind2-bc-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.ind2-bc-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.text-blue-300 {
  color: var(--blue-300);
}

.ind2-bc-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

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

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

  .ind2-impact-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 32px;
  }

  .ind2-ib-stats {
    border-left: none;
    padding-left: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    justify-content: flex-start;
  }

  .ind2-ib-stat {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .ind2-cards-grid {
    grid-template-columns: 1fr;
  }

  .ind2-features-row {
    grid-template-columns: 1fr;
  }

  .ind2-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .ind2-bc-actions {
    flex-direction: column;
    width: 100%;
  }

  .ind2-bc-actions a {
    width: 100%;
    justify-content: center;
  }

  .ind2-icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ind2-icon-card {
    min-width: auto;
  }
}

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

  .ind2-ib-stats {
    flex-direction: column;
    gap: 24px;
  }
}

/* ═══════════════════════════════════
   SINGLE CASE STUDY V2 STYLES
═══════════════════════════════════ */

/* Hero */
.csd-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #040b16;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.csd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.csd-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.8;
}

.csd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.9) 40%, rgba(4, 11, 22, 0.4) 100%);
}

.csd-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.csd-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.csd-hero-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.csd-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.csd-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.csd-hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.csd-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.csd-meta-item svg {
  color: var(--blue-500);
}

.csd-meta-item span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 2px;
}

.csd-meta-item strong {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* CSS Hero Graphic Mockup */
.csd-hero-graphic {
  position: relative;
  width: 100%;
}

.csd-browser {
  background: #081225;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.csd-browser-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.csd-dots {
  display: flex;
  gap: 6px;
}

.csd-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.csd-url {
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 16px;
  border-radius: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.csd-browser-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.csd-bb-left span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.csd-bb-left h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #10b981;
  margin: 4px 0;
  line-height: 1;
}

.csd-bb-left p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 16px 0;
}

.csd-bb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.csd-bb-grid div {
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  border-radius: 8px;
}

.csd-bb-grid small {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}

.csd-bb-grid strong {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.csd-bb-chart {
  width: 100%;
  height: 100%;
  min-height: 100px;
}

.csd-mobile {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 180px;
  background: #081225;
  border-radius: 24px;
  border: 4px solid #1e293b;
  padding: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

.csd-m-notch {
  width: 40%;
  height: 20px;
  background: #1e293b;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.csd-m-header {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  margin-top: 12px;
  margin-bottom: 16px;
}

.csd-m-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
}

.csd-m-card span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 2px;
}

.csd-m-card strong {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.csd-m-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.csd-m-progress div {
  height: 100%;
  background: var(--blue-500);
}

/* In-Page Nav */
.csd-nav-wrapper {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.csd-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  overflow-x: auto;
  padding: 0 20px;
  scrollbar-width: none;
}

.csd-nav::-webkit-scrollbar {
  display: none;
}

.csd-nav a {
  padding: 16px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}

.csd-nav a:hover,
.csd-nav a.active {
  color: var(--blue-600);
  border-bottom-color: var(--blue-600);
}

/* Overview Grid */
.csd-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.csd-og-text h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}

.csd-og-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.csd-og-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.csd-og-metric {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s;
}

.csd-og-metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.csd-ogm-icon {
  color: var(--blue-500);
  margin-bottom: 12px;
}

.csd-og-metric strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-600);
  margin-bottom: 4px;
  line-height: 1;
}

.csd-og-metric span {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* Challenge vs Solution */
.csd-challenge-solution {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.csd-cs-card {
  flex: 1;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
}

.csd-cs-card.challenge {
  background: #fff;
}

.csd-cs-card.solution {
  background: #f8fafc;
  border-color: var(--blue-200);
}

.csd-cs-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.csd-cs-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csd-cs-card.challenge .csd-cs-icon {
  background: #fee2e2;
  color: #ef4444;
}

.csd-cs-card.solution .csd-cs-icon {
  background: #eff6ff;
  color: var(--blue-600);
}

.csd-cs-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

.csd-cs-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csd-cs-card li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

.csd-cs-card.challenge li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #ef4444;
  font-size: 18px;
  line-height: 1;
}

.csd-cs-card.solution li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  color: var(--blue-500);
  font-weight: bold;
}

.csd-cs-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  padding: 0 10px;
}

/* Results Grid */
.csd-results-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
}

.csd-res-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  min-width: 200px;
}

.csd-res-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.csd-res-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csd-res-header strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1.1;
}

.csd-res-header span {
  font-size: 10px;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}

.csd-res-item p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Impact Dashboard (Dark) */
.csd-impact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.csd-impact-card {
  background: #081225;
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.csd-ic-content h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.csd-ic-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.csd-ic-metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.csd-ic-metrics strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.csd-ic-metrics .text-green {
  color: #10b981;
}

.csd-ic-metrics span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.csd-ic-chart-area {
  position: relative;
}

.csd-ic-svg {
  width: 100%;
  height: 120px;
}

.csd-ic-months {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}

.csd-impact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.csd-il-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.csd-il-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csd-il-text h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.csd-il-text p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Tech & Testimonial Row */
.csd-tech-test-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.csd-tech-box,
.csd-test-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.csd-tech-box h3,
.csd-test-box h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.csd-tech-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.csd-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.csd-tech-item svg {
  width: 32px;
  height: 32px;
}

.csd-tech-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

.csd-tb-quote {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.csd-tb-qicon {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: var(--blue-500);
  line-height: 0.8;
  height: 30px;
}

.csd-tb-quote p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.csd-tb-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.csd-tb-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.csd-tb-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.csd-tb-author span {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.csd-tb-stars {
  color: #fbbf24;
  font-size: 12px;
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .csd-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .csd-hero-graphic {
    max-width: 600px;
    margin: 0 auto;
  }

  .csd-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .csd-impact-container {
    grid-template-columns: 1fr;
  }

  .csd-tech-test-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .csd-hero-meta {
    grid-template-columns: 1fr;
  }

  .csd-browser-body {
    grid-template-columns: 1fr;
  }

  .csd-mobile {
    display: none;
  }

  .csd-og-metrics {
    grid-template-columns: 1fr;
  }

  .csd-challenge-solution {
    flex-direction: column;
  }

  .csd-cs-arrow {
    transform: rotate(90deg);
    margin: 16px 0;
  }

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

/* ═══════════════════════════════════
   ERP & CRM V2 STYLES
═══════════════════════════════════ */

/* ERP Hero */
.erp2-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #040b16;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.erp2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.erp2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.erp2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.95) 45%, rgba(4, 11, 22, 0.5) 100%);
}

.erp2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.erp2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.erp2-hero-label {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue-200);
  letter-spacing: 1.5px;
  width: fit-content;
}

.erp2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.erp2-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.erp2-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.erp2-hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.erp2-hero-list li svg {
  width: 18px;
  height: 18px;
  color: var(--blue-500);
}

.erp2-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* CSS Rendered ERP Dashboard Mockup */
.erp2-hero-graphic {
  position: relative;
  width: 100%;
  perspective: 1000px;
}

.erp2-browser {
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  color: var(--text-primary);
}

.erp2-browser-header {
  background: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.erp2-dots {
  display: flex;
  gap: 6px;
}

.erp2-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.erp2-b-title {
  margin: 0 auto;
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.erp2-browser-body {
  display: grid;
  grid-template-columns: 60px 1fr;
  height: 350px;
}

.erp2-bb-sidebar {
  background: #081225;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 16px;
}

.erp2-bb-sidebar div {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.erp2-bb-sidebar div.active {
  background: var(--blue-500);
}

.erp2-bb-main {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #f1f5f9;
}

.erp2-bb-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.erp2-bb-top h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.erp2-bb-search {
  width: 150px;
  height: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.erp2-bb-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.erp2-bb-m {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.erp2-bb-m span {
  font-size: 10px;
  color: var(--text-secondary);
}

.erp2-bb-m strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.erp2-bb-m small {
  font-size: 9px;
  font-weight: 600;
}

.erp2-bb-charts {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  flex: 1;
}

.erp2-bb-chart-area,
.erp2-bb-chart-pie {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.erp2-bb-charts span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: block;
}

.erp2-bb-chart-area svg {
  width: 100%;
  height: 100%;
  flex: 1;
}

.erp2-pie-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 12px solid var(--blue-100);
  border-top-color: var(--blue-500);
  border-right-color: var(--blue-400);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.erp2-mobile {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 160px;
  height: 300px;
  background: #081225;
  border-radius: 24px;
  border: 4px solid #1e293b;
  padding: 16px 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.erp2-m-notch {
  width: 40px;
  height: 12px;
  background: #1e293b;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.erp2-m-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  flex: 1;
}

.erp2-m-header {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.erp2-m-card-main {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.erp2-m-card-main span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
}

.erp2-m-card-main strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.erp2-m-card-main svg {
  width: 100%;
  margin-top: 8px;
}

.erp2-m-list {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  flex: 1;
}

.erp2-m-list span {
  font-size: 9px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}

.erp2-m-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.erp2-m-item .circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid var(--blue-500);
}

.erp2-m-item .line {
  height: 4px;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* Endless Possibilities Row */
.erp2-benefits-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.erp2-b-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.erp2-b-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.2s;
}

.erp2-b-item:hover .erp2-b-icon {
  transform: translateY(-4px);
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.erp2-b-item h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.erp2-b-item p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* Powerful Modules Grid */
.erp2-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.erp2-module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.erp2-module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-200);
}

.erp2-mc-icon {
  color: var(--blue-500);
  margin-bottom: 20px;
  background: var(--blue-50);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erp2-module-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.erp2-module-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Industries Quick Nav */
.erp2-industries-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  text-align: center;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
}

.erp2-industries-row::-webkit-scrollbar {
  height: 6px;
}

.erp2-industries-row::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.erp2-industries-row::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.erp2-ind-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 100px;
}

.erp2-ind-icon {
  color: var(--blue-500);
  transition: transform 0.2s;
}

.erp2-ind-item:hover .erp2-ind-icon {
  transform: translateY(-3px);
}

.erp2-ind-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* Measurable Results Banner */
.erp2-results-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.erp2-rb-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 40px;
}

.erp2-rb-m {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.erp2-rb-m strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-400);
  line-height: 1;
}

.erp2-rb-m span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  font-weight: 500;
}

.erp2-rb-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.erp2-glowing-platform {
  position: relative;
  width: 300px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erp2-gp-base {
  position: absolute;
  bottom: -20px;
  width: 100%;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0) 70%);
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.4), inset 0 0 20px rgba(59, 130, 246, 0.4);
  transform: scaleY(0.5);
}

.erp2-gp-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(11, 25, 44, 0.8);
  border: 1px solid var(--blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(4px);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.erp2-gp-icon:nth-child(2) {
  animation-delay: 0s;
}

.erp2-gp-icon:nth-child(3) {
  animation-delay: 1.5s;
}

.erp2-gp-icon:nth-child(4) {
  animation-delay: 3s;
}

.erp2-gp-icon:nth-child(5) {
  animation-delay: 4.5s;
}

.erp2-gp-center {
  position: absolute;
  bottom: 10px;
  width: 80px;
  height: 80px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 30px var(--blue-500);
  z-index: 3;
}

.erp2-gp-center svg {
  width: 40px;
  height: 40px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Logos Row */
.erp2-logos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.erp2-logos-row:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.erp2-logo-ph {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.erp2-logo-ph svg {
  width: 32px;
  height: 32px;
  color: var(--text-secondary);
}

.erp2-logo-ph span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.1;
}

/* Testimonial Block */
.erp2-testimonial-block {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
}

.erp2-tb-left {
  flex: 1;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}

.erp2-tb-quote {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.erp2-tb-qicon {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: var(--blue-500);
  line-height: 0.8;
  height: 30px;
}

.erp2-tb-quote p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.erp2-tb-right {
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.erp2-tb-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.erp2-tb-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.erp2-tb-nav button:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
}

.erp2-tb-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.erp2-tb-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  overflow: hidden;
}

.erp2-tb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.erp2-tb-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.erp2-tb-author span {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  margin: 2px 0;
}

.erp2-tb-author small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--blue-600);
}

.erp2-tb-stars {
  color: #fbbf24;
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .erp2-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .erp2-hero-graphic {
    max-width: 700px;
    margin: 0 auto;
  }

  .erp2-benefits-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }

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

  .erp2-results-banner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .erp2-rb-metrics {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .erp2-hero-title {
    font-size: 32px;
  }

  .erp2-mobile {
    display: none;
  }

  .erp2-browser-body {
    grid-template-columns: 1fr;
    height: auto;
  }

  .erp2-bb-sidebar {
    display: none;
  }

  .erp2-bb-metrics {
    grid-template-columns: 1fr;
  }

  .erp2-bb-charts {
    grid-template-columns: 1fr;
  }

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

  .erp2-modules-grid {
    grid-template-columns: 1fr;
  }

  .erp2-industries-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .erp2-rb-metrics {
    grid-template-columns: 1fr;
  }

  .erp2-testimonial-block {
    flex-direction: column;
    gap: 32px;
  }

  .erp2-tb-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 32px;
  }

  .erp2-tb-right {
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
  }

  .erp2-tb-nav {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .erp2-benefits-row {
    grid-template-columns: 1fr;
  }

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

  .erp2-tb-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ═══════════════════════════════════
   WEB & MOBILE APP V2 STYLES
═══════════════════════════════════ */

/* Hero */
.web2-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #040b16;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.web2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.web2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.web2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.9) 50%, rgba(4, 11, 22, 0.4) 100%);
}

.web2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.web2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.web2-hero-label {
  display: inline-flex;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue-300);
  letter-spacing: 1.5px;
  width: fit-content;
}

.web2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.web2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

.web2-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* CSS Rendered Devices Graphic */
.web2-hero-graphic {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.web2-browser {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 85%;
  height: 350px;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.web2-browser-header {
  background: #f1f5f9;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.web2-dots {
  display: flex;
  gap: 6px;
}

.web2-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.web2-browser-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.web2-bb-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.web2-bb-nav .logo {
  width: 80px;
  height: 16px;
  background: var(--border);
  border-radius: 4px;
}

.web2-bb-nav .links {
  display: flex;
  gap: 12px;
}

.web2-bb-nav .links span {
  width: 40px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
}

.web2-bb-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.web2-bb-hero .text-block {
  width: 60%;
  height: 24px;
  background: #e2e8f0;
  border-radius: 6px;
}

.web2-bb-hero .short {
  width: 40%;
  height: 16px;
  background: #f1f5f9;
}

.web2-bb-hero .btn-block {
  width: 120px;
  height: 32px;
  background: var(--blue-500);
  border-radius: 16px;
  margin-top: 8px;
}

.web2-bb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.web2-bb-grid .card {
  height: 100px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.web2-mobile {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 180px;
  height: 360px;
  background: #081225;
  border-radius: 24px;
  border: 6px solid #1e293b;
  padding: 16px 12px;
  box-shadow: -10px 24px 48px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  z-index: 2;
  overflow: hidden;
}

.web2-m-notch {
  width: 50px;
  height: 14px;
  background: #1e293b;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.web2-m-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  flex: 1;
}

.web2-m-app-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.web2-m-app-header .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-600);
}

.web2-m-app-header .text {
  width: 60px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.web2-m-app-card {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  border-radius: 12px;
}

.web2-m-app-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.web2-m-app-list .item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.web2-m-app-list .icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.web2-m-app-list .line {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  flex: 1;
}

.web2-m-app-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.web2-m-app-bottom span {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

/* Core Services Grid */
.web2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.web2-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.web2-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-200);
}

.web2-sc-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.web2-service-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.web2-service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Development Process Grid */
.web2-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.web2-process-step {
  position: relative;
  padding: 32px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.web2-ps-num {
  position: absolute;
  top: -20px;
  left: 32px;
  font-family: 'Exo 2', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  -webkit-text-stroke: 1px var(--border);
  text-shadow: 2px 2px 0 var(--blue-50);
  line-height: 1;
}

.web2-process-step:hover .web2-ps-num {
  color: var(--blue-50);
  -webkit-text-stroke: 1px var(--blue-300);
}

.web2-process-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0 12px 0;
}

.web2-process-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Tech Stack */
.web2-tech-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.web2-ts-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 24px;
}

.web2-ts-category h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.web2-ts-logos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.web2-ts-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.web2-ts-item svg {
  width: 28px;
  height: 28px;
}

.web2-ts-item span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* Benefits Row */
.web2-benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.web2-ben-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.web2-ben-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
}

.web2-ben-item h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.web2-ben-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .web2-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .web2-hero-graphic {
    max-width: 600px;
    margin: 0 auto;
    height: 350px;
  }

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

  .web2-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

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

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

@media (max-width: 768px) {
  .web2-services-grid {
    grid-template-columns: 1fr;
  }

  .web2-process-grid {
    grid-template-columns: 1fr;
  }

  .web2-tech-stack {
    grid-template-columns: 1fr;
  }

  .web2-benefits-row {
    grid-template-columns: 1fr;
  }

  .web2-hero-graphic {
    height: 250px;
  }

  .web2-browser {
    height: 200px;
    width: 100%;
  }

  .web2-mobile {
    width: 120px;
    height: 240px;
    right: 20px;
  }
}

/* ═══════════════════════════════════
   CLOUD SOLUTIONS V2 STYLES
═══════════════════════════════════ */

/* Hero */
.cloud2-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #040b16;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.cloud2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cloud2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.cloud2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.85) 45%, rgba(4, 11, 22, 0.4) 65%, rgba(4, 11, 22, 0.72) 100%);
}

.cloud2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cloud2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cloud2-breadcrumbs {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

.cloud2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.cloud2-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

.cloud2-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.cloud2-hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.cloud2-hh-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cloud2-hh-item svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.cloud2-hh-item span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* CSS Rendered Glowing Cloud Graphic */
.cloud2-hero-graphic {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud2-glowing-pedestal {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud2-gp-base {
  position: absolute;
  bottom: 80px;
  width: 300px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0) 70%);
  border: 2px solid rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.6), inset 0 0 30px rgba(59, 130, 246, 0.6);
  transform: scaleY(0.4);
  z-index: 1;
}

.cloud2-gp-ring {
  position: absolute;
  bottom: 80px;
  border-radius: 50%;
  border: 1px dashed rgba(59, 130, 246, 0.5);
  transform: scaleY(0.4);
  z-index: 0;
  animation: spin 20s linear infinite;
}

.cloud2-gp-ring.ring1 {
  width: 400px;
  height: 400px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(59, 130, 246, 0.2);
}

.cloud2-gp-ring.ring2 {
  width: 500px;
  height: 500px;
  animation-direction: reverse;
  animation-duration: 30s;
  border-color: rgba(59, 130, 246, 0.3);
}

.cloud2-gp-ring.ring3 {
  width: 600px;
  height: 600px;
  border-color: rgba(59, 130, 246, 0.1);
}

@keyframes spin {
  100% {
    transform: scaleY(0.4) rotate(360deg);
  }
}

.cloud2-cloud-shape {
  position: absolute;
  top: 100px;
  width: 220px;
  height: 140px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.cloud2-cloud-shape>svg {
  position: absolute;
  width: 100%;
  height: 100%;
  color: var(--blue-400);
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8));
  stroke-width: 1.5;
}

.cloud2-cloud-server {
  position: relative;
  width: 100px;
  height: 60px;
  background: rgba(4, 11, 22, 0.9);
  border: 1px solid var(--blue-500);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 4px;
  box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.3);
  z-index: 3;
}

.c-svr-slot {
  height: 12px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.c-svr-slot span {
  width: 4px;
  height: 4px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: blink 2s infinite;
}

.c-svr-slot:nth-child(2) span {
  animation-delay: 0.5s;
  background: var(--blue-400);
  box-shadow: 0 0 8px var(--blue-400);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.cloud2-float-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(4, 11, 22, 0.8);
  border: 1px solid var(--blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  z-index: 3;
}

.cloud2-float-icon svg {
  width: 20px;
  height: 20px;
}

.icon-lock {
  top: 60px;
  left: 40px;
  animation: float 5s ease-in-out infinite 1s;
}

.icon-db {
  top: 40px;
  right: 20px;
  animation: float 7s ease-in-out infinite 2s;
}

.icon-chart {
  bottom: 120px;
  left: 10px;
  animation: float 6s ease-in-out infinite 0.5s;
}

.icon-shield {
  bottom: 140px;
  right: 40px;
  animation: float 8s ease-in-out infinite 1.5s;
}

/* Cloud Services Grid */
.cloud2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cloud2-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cloud2-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-200);
}

.cloud2-sc-icon {
  color: var(--blue-500);
  margin-bottom: 24px;
}

.cloud2-service-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.cloud2-service-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Why Choose Section */
.cloud2-why-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;
}

.cloud2-why-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cloud2-metric-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cloud2-mc-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.cloud2-mc-item strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-400);
  line-height: 1;
  margin-bottom: 8px;
}

.cloud2-mc-item span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  flex: 1;
}

.cloud2-mc-chart {
  height: 30px;
  margin-top: 16px;
  opacity: 0.8;
}

.cloud2-why-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud2-dashboard {
  width: 100%;
  max-width: 360px;
  background: rgba(4, 11, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(8px);
}

.cloud2-d-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cloud2-d-header span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.cloud2-d-header .btn {
  font-size: 9px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
}

.cloud2-d-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cloud2-d-stats .stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cloud2-d-stats span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
}

.cloud2-d-stats strong {
  font-size: 16px;
  color: #fff;
}

.cloud2-d-stats small.up {
  color: #10b981;
  font-size: 9px;
  font-weight: 600;
}

.cloud2-d-main-chart {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mc-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mc-info span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.mc-info strong {
  font-size: 20px;
  color: #fff;
}

.mc-info small {
  color: #10b981;
  font-size: 10px;
  font-weight: 600;
}

/* Cloud Platforms */
.cloud2-platforms-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
  text-align: center;
}

.cloud2-pf-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cloud2-pf-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-200);
}

.cloud2-pf-item img,
.cloud2-pf-item svg {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.cloud2-pf-item:hover img,
.cloud2-pf-item:hover svg {
  filter: grayscale(0%) opacity(1);
}

.pf-fallback {
  display: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Process Timeline */
.cloud2-process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 40px;
}

.cloud2-pt-line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 2px dashed var(--border);
  z-index: 0;
}

.cloud2-pt-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cloud2-pt-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue-200);
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cloud2-pt-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -28px;
  margin-bottom: 16px;
  border: 2px solid #fff;
}

.cloud2-pt-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.cloud2-pt-step p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .cloud2-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cloud2-hero-graphic {
    height: 300px;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .cloud2-why-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cloud2-why-dashboard {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .cloud2-dashboard {
    max-width: 100%;
  }

  .cloud2-platforms-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .cloud2-hero-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .cloud2-services-grid {
    grid-template-columns: 1fr;
  }

  .cloud2-metric-cards {
    grid-template-columns: 1fr;
  }

  .cloud2-process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cloud2-pt-line {
    display: none;
  }

  .cloud2-pt-step {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 16px;
  }

  .cloud2-pt-icon {
    margin-bottom: 0;
  }

  .cloud2-pt-num {
    position: absolute;
    left: 36px;
    top: 36px;
    margin: 0;
  }

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

/* ═══════════════════════════════════
   REAL ESTATE CASE STUDY STYLES
═══════════════════════════════════ */

/* Hero Section */
.re2-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #040b16;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.re2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.re2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.re2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.9) 45%, rgba(4, 11, 22, 0.4) 100%);
}

.re2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.re2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.re2-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.re2-breadcrumbs .badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 4px;
  color: var(--blue-400);
}

.re2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

.re2-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.re2-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.re2-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.re2-stat-item svg {
  color: var(--blue-400);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.re2-s-text {
  display: flex;
  flex-direction: column;
}

.re2-s-text strong {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.re2-s-text span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.re2-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

/* Hero Graphic & Mockups */
.re2-hero-graphic {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.re2-glass-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateZ(20px);
}

.re2-glass-badge.badge1 {
  top: 60px;
  left: 0;
  animation: float 6s ease-in-out infinite;
}

.re2-glass-badge.badge2 {
  top: 140px;
  left: -20px;
  animation: float 7s ease-in-out infinite 1s;
}

.re2-glass-badge.badge3 {
  bottom: 60px;
  right: 0;
  animation: float 8s ease-in-out infinite 2s;
}

.b-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.2);
  color: var(--blue-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.b-icon svg {
  width: 18px;
  height: 18px;
}

.b-text {
  display: flex;
  flex-direction: column;
}

.b-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.b-text span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

/* Laptop */
.re2-laptop {
  position: absolute;
  width: 440px;
  height: 260px;
  transform: rotateY(-15deg) rotateX(5deg);
  transform-style: preserve-3d;
  z-index: 1;
}

.re2-laptop.sm {
  width: 100%;
  height: 100%;
  transform: none;
  position: relative;
}

.re2-l-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 8px 8px 0 0;
  padding: 8px 8px 12px 8px;
  border: 1px solid #333;
  box-shadow: inset 0 0 0 1px #111;
  overflow: hidden;
  position: relative;
}

.re2-l-base {
  position: absolute;
  bottom: -12px;
  left: -20px;
  right: -20px;
  height: 12px;
  background: linear-gradient(to bottom, #cfd8dc, #90a4ae);
  border-radius: 0 0 12px 12px;
  transform-origin: top;
  transform: rotateX(-30deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.re2-l-browser {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.re2-lb-header {
  height: 24px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 12px;
  border-bottom: 1px solid #cbd5e1;
}

.re2-dots {
  display: flex;
  gap: 4px;
}

.re2-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.re2-addressbar {
  flex: 1;
  background: #fff;
  height: 14px;
  border-radius: 2px;
  font-size: 8px;
  color: #64748b;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.re2-lb-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.re2-lb-hero {
  padding: 20px;
  color: #fff;
  text-align: center;
}

.re2-lb-hero h3 {
  font-size: 14px;
  margin: 0 0 12px 0;
}

.re2-searchbar {
  background: #fff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  height: 24px;
  font-size: 8px;
  color: #333;
  margin: 0 auto;
  width: 80%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.re2-searchbar span {
  padding: 0 8px;
  display: flex;
  align-items: center;
  border-right: 1px solid #eee;
}

.s-btn {
  background: var(--blue-600);
  color: #fff;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.re2-lb-grid {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  margin-top: auto;
  margin-bottom: 20px;
}

.l-card {
  flex: 1;
  background: #fff;
  height: 60px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.lc-img {
  height: 40px;
  background: #cbd5e1;
}

.lc-t {
  height: 6px;
  width: 60%;
  background: #e2e8f0;
  margin: 6px;
}

/* Mobile */
.re2-mobile {
  position: absolute;
  right: 20px;
  bottom: 60px;
  width: 120px;
  height: 240px;
  background: #111;
  border-radius: 16px;
  padding: 6px;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.6), inset 0 0 0 2px #333;
  z-index: 2;
  transform: rotateY(-10deg) translateZ(30px);
}

.re2-mobile.sm {
  position: relative;
  right: auto;
  bottom: auto;
  width: 140px;
  height: 280px;
  transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.re2-m-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.re2-m-header {
  height: 16px;
  background: #e2e8f0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 2px;
}

.re2-m-header span {
  width: 30px;
  height: 4px;
  background: #cbd5e1;
  border-radius: 2px;
}

.re2-m-content {
  flex: 1;
  padding: 8px;
  background: #f8fafc;
}

.re2-m-hero {
  height: 30px;
  background: #0f172a;
  border-radius: 4px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.re2-m-card {
  height: 60px;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 8px;
  border: 1px solid #e2e8f0;
  padding: 4px;
}

.mc-img {
  height: 30px;
  background: #cbd5e1;
  border-radius: 2px;
}

/* Client & Challenges */
.re2-cc-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
}

.re2-c-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: var(--text-primary);
}

.re2-about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.re2-ac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.re2-ac-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--border);
  padding-right: 24px;
}

.ac-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ac-icon {
  width: 28px;
  height: 28px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ac-icon svg {
  width: 14px;
  height: 14px;
}

.ac-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ac-text span {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ac-text strong {
  font-size: 13px;
  color: var(--text-primary);
}

.re2-ac-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.re2-challenges-card {
  position: relative;
  background: #0f172a;
  border-radius: 12px;
  padding: 32px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.re2-cc-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent 50%);
  z-index: 0;
}

.re2-cc-content {
  position: relative;
  z-index: 1;
}

.re2-clist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.re2-clist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.re2-clist li svg {
  flex-shrink: 0;
}

/* Approach & Solution */
.re2-approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.re2-acard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.a-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.a-icon svg {
  width: 24px;
  height: 24px;
}

.a-text h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.a-text p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.re2-solution-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #f8fafc;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
}

.re2-ss-graphics {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.re2-ss-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 260px;
  display: flex;
  align-items: flex-end;
}

.re2-ss-wrapper .re2-mobile.sm {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 2;
}

.re2-ss-features h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 24px 0;
}

.re2-flist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.re2-flist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.re2-flist li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Measurable Impact */
.re2-impact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.re2-imc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.re2-im-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.re2-im-card strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-400);
  line-height: 1;
  margin-bottom: 8px;
}

.re2-im-card span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  flex: 1;
}

.mc-chart {
  height: 30px;
  margin-top: 16px;
  opacity: 0.8;
}

.re2-im-chart-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.re2-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.re2-chart-header h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.re2-ch-legend {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
}

.c-bef,
.c-aft {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
}

.c-bef::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.c-aft::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-400);
}

.c-tot {
  color: #10b981;
  margin-left: 8px;
}

.re2-svg-chart {
  width: 100%;
  height: 240px;
  position: relative;
}

.re2-svg-chart svg {
  width: 100%;
  height: 100%;
}

.x-axis {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

/* Before vs After */
.re2-ba-container {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.re2-ba-card {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.re2-ba-card.before {
  background: #fff;
  border-color: rgba(239, 68, 68, 0.2);
}

.re2-ba-card.after {
  background: #fff;
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}

.ba-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.ba-header svg {
  width: 24px;
  height: 24px;
}

.ba-img-dummy {
  height: 160px;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ba-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ba-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.ba-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.re2-ba-card.after .ba-list li {
  color: var(--text-primary);
}

.re2-ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 0;
  width: 48px;
  height: 48px;
  background: var(--blue-600);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  flex-shrink: 0;
}

/* Tech & Testimonial */
.re2-tt-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.re2-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.t-chip img {
  height: 32px;
  object-fit: contain;
}

.t-chip span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

.t-chip .pf-fallback {
  display: none;
}

.re2-testim-card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 16px;
  padding: 40px;
  color: #fff;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.re2-testim-card .quote-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
}

.re2-testim-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #fff;
}

.re2-testim-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  font-style: italic;
}

.re2-t-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.re2-t-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.a-info {
  display: flex;
  flex-direction: column;
}

.a-info strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.a-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.a-stars {
  margin-left: auto;
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .re2-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .re2-hero-graphic {
    height: 400px;
  }

  .re2-cc-split,
  .re2-solution-split,
  .re2-impact-split,
  .re2-tt-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .re2-ac-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .re2-ac-details {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 16px;
  }

  .re2-ba-container {
    flex-direction: column;
  }

  .re2-ba-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

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

  .re2-hero-graphic {
    display: none;
  }

  .re2-approach-cards {
    grid-template-columns: 1fr;
  }

  .re2-imc-grid {
    grid-template-columns: 1fr;
  }

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

/* ═══════════════════════════════════
   IT CONSULTING V2 STYLES
═══════════════════════════════════ */

/* Hero Section */
.it2-hero {
  position: relative;
  padding: 120px 40px 60px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #000d2e 0%, #001a5c 50%, #001233 100%);
  min-height: auto;
  display: flex;
  align-items: center;
}

.it2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.it2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.it2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.8) 45%, rgba(4, 11, 22, 0.4) 65%, rgba(4, 11, 22, 0.7) 100%);
}

.it2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.it2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.it2-breadcrumbs {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.it2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.it2-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 540px;
}

.it2-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Hero Graphic Abstract */
.it2-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.it2-hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.it2-hero-visual-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.it2-hero-visual-wrap img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 1;
}

.it2-abstract-ring {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.it2-abstract-ring svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ring-spin {
  animation: spin 20s linear infinite;
  transform-origin: center;
}

.ring-progress {
  animation: pulse-stroke 4s ease-in-out infinite;
  transform-origin: center;
  transform: rotate(-90deg);
}

.it2-center-icon {
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  z-index: 2;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-stroke {

  0%,
  100% {
    stroke-dashoffset: 100;
  }

  50% {
    stroke-dashoffset: 0;
  }
}

.it2-floating-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.it2-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
}

.it2-n-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.it2-n-icon svg {
  width: 12px;
  height: 12px;
}

.it2-node span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.it2-node.n1 {
  top: 40px;
  right: 20px;
  animation: float 6s ease-in-out infinite;
}

.it2-node.n2 {
  top: 120px;
  left: -20px;
  animation: float 7s ease-in-out infinite 1s;
}

.it2-node.n3 {
  bottom: 80px;
  right: 0;
  animation: float 8s ease-in-out infinite 2s;
}

.it2-node.n4 {
  bottom: 20px;
  left: 40px;
  animation: float 5s ease-in-out infinite 1.5s;
}

/* Services Grid */
.it2-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.it2-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.it2-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-200);
}

.it2-sc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.it2-sc-icon svg {
  width: 24px;
  height: 24px;
}

.it2-service-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.it2-service-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Approach Timeline */
.it2-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.it2-t-line {
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 2px dashed rgba(59, 130, 246, 0.3);
  z-index: 0;
}

.it2-timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 18%;
}

.it2-ts-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0f172a;
  border: 2px solid var(--blue-500);
  color: var(--blue-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.it2-ts-icon svg {
  width: 28px;
  height: 28px;
}

.it2-ts-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-500);
  margin-bottom: 8px;
}

.it2-timeline-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}

.it2-timeline-step p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* Why Choose Us */
.it2-why-choose {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.it2-wc-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.it2-wc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.it2-wc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.it2-wc-list li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.it2-wc-image {
  border-radius: 16px;
  overflow: hidden;
}

.it2-wc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.it2-wc-css-graphic {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.it2-cssg-dashboard {
  width: 80%;
  height: 70%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.it2-cssg-header {
  height: 24px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.it2-cssg-dots {
  display: flex;
  gap: 6px;
}

.it2-cssg-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.it2-cssg-dots span:nth-child(1) {
  background: #ef4444;
}

.it2-cssg-dots span:nth-child(2) {
  background: #eab308;
}

.it2-cssg-dots span:nth-child(3) {
  background: #22c55e;
}

.it2-cssg-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.it2-cssg-chart {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.it2-cssg-chart svg {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
}

.it2-cssg-stats {
  display: flex;
  gap: 12px;
  height: 60px;
}

.it2-cssg-statbox {
  flex: 1;
  background: #f1f5f9;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.it2-cssg-statbox::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40%;
  height: 8px;
  background: #cbd5e1;
  border-radius: 4px;
}

.it2-cssg-statbox::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12px;
  width: 60%;
  height: 16px;
  background: #94a3b8;
  border-radius: 4px;
}

.it2-cssg-statbox:first-child::before {
  background: var(--blue-500);
  width: 80%;
}

.it2-cssg-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.it2-cssg-float svg {
  color: var(--blue-600);
}

.it2-cssg-float span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.it2-cssg-float.f1 {
  top: 15%;
  right: -5%;
  animation: float 5s ease-in-out infinite;
}

.it2-cssg-float.f2 {
  bottom: 20%;
  left: -5%;
  animation: float 6s ease-in-out infinite 1s;
}

.it2-why-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.it2-wm-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.wm-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wm-icon svg {
  width: 24px;
  height: 24px;
}

.wm-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wm-text strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.wm-text span {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Real Impact Section */
.it2-impact-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: stretch;
}

.it2-cs-highlight {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.it2-csh-img {
  height: 160px;
  overflow: hidden;
}

.it2-csh-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.it2-cs-highlight:hover .it2-csh-img img {
  transform: scale(1.05);
}

.it2-csh-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.it2-csh-content h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.it2-csh-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex: 1;
}

.it2-csh-content a {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
}

.it2-csh-content a:hover {
  color: var(--blue-700);
}

.it2-impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.it2-istat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  border-right: 1px solid var(--border);
}

.it2-istat:last-child {
  border-right: none;
}

.it2-istat strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
}

.it2-istat span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
  max-width: 120px;
}

@media (max-width: 1024px) {
  .it2-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .it2-hero-graphic {
    height: 300px;
  }

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

  .it2-why-choose {
    grid-template-columns: 1fr 1fr;
  }

  .it2-wc-image {
    display: none;
  }

  .it2-impact-section {
    grid-template-columns: 1fr;
  }

  .it2-impact-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px;
    gap: 32px;
  }

  .it2-istat:nth-child(2) {
    border-right: none;
  }

  .it2-istat {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .it2-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .it2-hero-actions a {
    justify-content: center;
  }

  .it2-services-grid {
    grid-template-columns: 1fr;
  }

  .it2-timeline {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .it2-t-line {
    display: none;
  }

  .it2-timeline-step {
    width: 100%;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
  }

  .it2-ts-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .it2-ts-num {
    position: absolute;
    left: 48px;
    top: -10px;
    background: #040b16;
    padding: 0 4px;
  }

  .it2-why-choose {
    grid-template-columns: 1fr;
  }

  .it2-impact-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .it2-istat {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .it2-istat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ═══════════════════════════════════
   GLOBAL MOBILE OPTIMIZATIONS (ALL V2 PAGES)
═══════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero Paddings Adjustments */
  .hero-v2,
  .contact-v2-hero,
  .sv2-hero,
  .av2-hero,
  .fcv2-hero {
    padding-top: 110px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
  }

  .fcv2-hero {
    min-height: auto;
  }

  /* Typography Scaling for smaller screens */
  .cv2-hero-title,
  .sv2-hero-title,
  .av2-hero-title,
  .fcv2-hero-title {
    font-size: clamp(32px, 8vw, 42px);
  }

  /* CTA V2 Tweaks for Mobile */
  .cta-v2-bg img {
    width: 100%;
    opacity: 0.3;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .cta-v2-inner {
    text-align: center;
    justify-content: center;
  }

  .cta-v2-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-v2-actions a {
    width: 100%;
    justify-content: center;
  }

  /* General Action Buttons Full Width */
  .hero-v2-actions a,
  .cv2-hero-actions a,
  .sv2-hero-actions a,
  .av2-hero-actions a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  /* Ultra small screens constraints */
  .fcv2-benefits-grid,
  .industry-v2-grid {
    grid-template-columns: 1fr;
  }

  .cv2-features-grid {
    grid-template-columns: 1fr;
  }

  .fcv2-trusted-badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}

/* ═══════════════════════════════════
   services-uiux.HTML STYLES
═══════════════════════════════════ */

/* --- Hero --- */
.ui2-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #040b16;
  color: #fff;
  padding: 140px 40px 80px;
}

.ui2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ui2-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.ui2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.8) 50%, rgba(4, 11, 22, 0.4) 68%, rgba(4, 11, 22, 0.72) 100%);
}

.ui2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.ui2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ui2-breadcrumbs {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

.ui2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.ui2-hero-title .text-blue {
  color: var(--blue-400);
}

.ui2-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}

.ui2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ui2-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ui2-hh-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

.ui2-hh-item svg {
  color: var(--blue-400);
  flex-shrink: 0;
  margin-top: 1px;
}

.ui2-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui2-hero-visual img {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- About Section --- */
.ui2-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ui2-about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ui2-about-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.ui2-as-item h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-600);
  margin: 0 0 4px;
  line-height: 1;
}

.ui2-as-item p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

.ui2-about-image {
  position: relative;
}

.ui2-about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

/* --- Expertise Grid --- */
.ui2-expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ui2-exp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

.ui2-exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--blue-200);
}

.ui2-exp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ui2-exp-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.ui2-exp-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

.ui2-exp-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
  margin-top: auto;
}

.ui2-exp-card a:hover {
  text-decoration: underline;
}

/* --- Tools Row --- */
.ui2-tools-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ui2-tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ui2-tool-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ui2-tool-item:hover .ui2-tool-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ui2-tool-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --- Why Choose Us --- */
.ui2-why-section {
  position: relative;
  padding: 100px 40px;
  overflow: hidden;
  color: #fff;
}

.ui2-why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ui2-why-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ui2-why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 0.97) 0%, rgba(4, 11, 22, 0.88) 55%, rgba(4, 11, 22, 0.72) 100%);
}

.ui2-why-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.ui2-why-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-400);
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.ui2-why-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 28px;
}

.ui2-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ui2-why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.ui2-why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ui2-ws-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease;
}

.ui2-ws-card:hover {
  background: rgba(255, 255, 255, 0.10);
}

.ui2-ws-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-400);
  margin: 0 0 6px;
  line-height: 1;
}

.ui2-ws-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-weight: 500;
}

/* --- Process Timeline --- */
.ui2-process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

.ui2-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0, var(--blue-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.ui2-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.ui2-proc-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.ui2-proc-num {
  position: absolute;
  top: 46px;
  width: 22px;
  height: 22px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f8fafc;
}

.ui2-proc-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.ui2-proc-step p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .ui2-expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .ui2-process-row::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .ui2-hero-inner {
    grid-template-columns: 1fr;
  }

  .ui2-hero-visual {
    display: none;
  }

  .ui2-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ui2-why-inner {
    grid-template-columns: 1fr;
  }

  .ui2-why-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .ui2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

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

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

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

  .ui2-about-stats {
    gap: 20px;
  }

  .ui2-why-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .ui2-expertise-grid {
    grid-template-columns: 1fr;
  }

  .ui2-process-row {
    grid-template-columns: 1fr;
  }

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

  .ui2-hero-highlights {
    gap: 16px;
  }
}

/* ═══════════════════════════════════
   services-web-app-development.HTML STYLES
═══════════════════════════════════ */

/* Hero */
.wd2-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000d2e 0%, #001a5c 50%, #001233 100%);
  color: #fff;
  padding: 120px 40px 60px;
}

.wd2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wd2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.8) 45%, rgba(4, 11, 22, 0.35) 65%, rgba(4, 11, 22, 0.7) 100%);
}

.wd2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 50px;
}

.wd2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.wd2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--blue-400);
  width: fit-content;
}

.wd2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  margin: 0;
}

.wd2-hero-title .text-blue {
  color: var(--blue-400);
}

.wd2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.wd2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.wd2-hero-actions .btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wd2-hero-trust {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wd2-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.wd2-trust-item svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.wd2-trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.wd2-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.wd2-hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.wd2-hero-visual-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.wd2-hero-visual-wrap img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 1;
}

/* Capabilities Grid */
.wd2-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wd2-cap-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wd2-cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.wd2-cap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.wd2-cap-card:hover::before {
  transform: scaleX(1);
}

.wd2-cap-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wd2-cap-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.wd2-cap-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Performance Section */
.wd2-perf-section {
  position: relative;
  background: #081225;
  padding: 80px 40px;
  overflow: hidden;
  color: #fff;
}

.wd2-perf-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.wd2-perf-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wd2-perf-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-400);
  margin-bottom: 12px;
  display: block;
}

.wd2-perf-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 32px;
}

.wd2-perf-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.wd2-ps-item h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--blue-400);
  margin: 0 0 4px;
  line-height: 1;
}

.wd2-ps-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-weight: 500;
}

.wd2-perf-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Technologies */
.wd2-tech-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.wd2-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.wd2-tech-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wd2-tech-item:hover .wd2-tech-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.wd2-tech-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Process Row */
.wd2-process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.wd2-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0, var(--blue-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.wd2-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.wd2-proc-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.wd2-proc-num {
  position: absolute;
  top: 46px;
  width: 22px;
  height: 22px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f8fafc;
}

.wd2-proc-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.wd2-proc-step p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Features + FAQ */
.wd2-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.wd2-feat-image {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.wd2-feat-image img {
  width: 100%;
  display: block;
}

.wd2-features-col h3,
.wd2-faq-col h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px;
}

.wd2-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wd2-feat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.wd2-faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wd2-faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.wd2-faq-item summary {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.wd2-faq-item summary::-webkit-details-marker {
  display: none;
}

.wd2-faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--blue-500);
  transition: transform 0.25s ease;
}

.wd2-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.wd2-faq-item summary:hover {
  background: #f8fafc;
}

.wd2-faq-item[open] {
  border-color: var(--blue-200);
}

.wd2-faq-item[open] summary {
  background: #f0f6ff;
  color: var(--blue-700);
}

.wd2-faq-item p {
  padding: 0 20px 16px;
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .wd2-hero-inner {
    grid-template-columns: 1fr;
  }

  .wd2-hero-visual {
    display: none;
  }

  .wd2-perf-inner {
    grid-template-columns: 1fr;
  }

  .wd2-perf-visual {
    display: none;
  }

  .wd2-faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .wd2-process-row::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .wd2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

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

  .wd2-perf-section {
    padding: 60px 20px;
  }

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

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

@media (max-width: 480px) {
  .wd2-cap-grid {
    grid-template-columns: 1fr;
  }

  .wd2-process-row {
    grid-template-columns: 1fr;
  }

  .wd2-hero-trust {
    gap: 14px;
  }
}

/* ═══════════════════════════════════
   services-mobile-application.HTML STYLES
═══════════════════════════════════ */

/* Hero */
.mob2-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #040b16;
  color: #fff;
  padding: 90px 40px 40px;
}

.mob2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mob2-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.mob2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.88) 50%, rgba(4, 11, 22, 0.2) 100%);
}

.mob2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 50px;
}

.mob2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mob2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--blue-400);
  width: fit-content;
}

.mob2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  margin: 0;
}

.mob2-hero-title .text-blue {
  color: var(--blue-400);
}

.mob2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.mob2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mob2-hero-trust {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mob2-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.mob2-trust-item svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.mob2-trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.mob2-hero-visual img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Stats Bar */
.mob2-stats-bar {
  background: #081225;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 40px;
}

.mob2-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.mob2-stat-item h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue-400);
  margin: 0 0 4px;
  line-height: 1;
}

.mob2-stat-item p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.mob2-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Services Grid */
.mob2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mob2-svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mob2-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.mob2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.mob2-svc-card:hover::before {
  transform: scaleX(1);
}

.mob2-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mob2-svc-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.mob2-svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us - White Background */
.mob2-why-section {
  position: relative;
  padding: 100px 40px;
  background: #f8fafc;
  overflow: hidden;
}

.mob2-why-bg {
  display: none;
}

.mob2-why-overlay {
  display: none;
}

.mob2-why-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mob2-why-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  border: 1px solid var(--blue-200);
  background: #eff6ff;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.mob2-why-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 16px;
}

.mob2-why-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 28px;
}

.mob2-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mob2-why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

.mob2-why-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob2-why-image-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
  border: 2px solid var(--blue-200);
}

.mob2-why-image-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(37, 99, 235, 0.15);
  pointer-events: none;
}

.mob2-why-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
  max-width: 420px;
}

/* Tech Row */
.mob2-tech-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mob2-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mob2-tech-icon {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mob2-tech-item:hover .mob2-tech-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.mob2-tech-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Process */
.mob2-process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.mob2-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0, var(--blue-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.mob2-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.mob2-proc-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mob2-proc-num {
  position: absolute;
  top: 46px;
  width: 22px;
  height: 22px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f8fafc;
}

.mob2-proc-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.mob2-proc-step p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .mob2-hero-inner {
    grid-template-columns: 1fr;
  }

  .mob2-hero-visual {
    display: none;
  }

  .mob2-why-inner {
    grid-template-columns: 1fr;
  }

  .mob2-why-image {
    display: none;
  }

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

  .mob2-process-row::before {
    display: none;
  }

  .mob2-stats-inner {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .mob2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

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

  .mob2-why-section {
    padding: 60px 20px;
  }

  .mob2-stats-bar {
    padding: 24px 20px;
  }

  .mob2-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .mob2-stat-sep {
    display: none;
  }

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

@media (max-width: 480px) {
  .mob2-services-grid {
    grid-template-columns: 1fr;
  }

  .mob2-process-row {
    grid-template-columns: 1fr;
  }

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

/* ═══════════════════════════════════
   services-ecommerce.HTML STYLES
═══════════════════════════════════ */

/* Hero */
.ec2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #040b16;
  color: #fff;
  padding: 140px 40px 80px;
}

.ec2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ec2-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.ec2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.88) 52%, rgba(4, 11, 22, 0.22) 100%);
}

.ec2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.ec2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ec2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--blue-400);
  width: fit-content;
}

.ec2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  margin: 0;
}

.ec2-hero-title .text-blue {
  color: var(--blue-400);
}

.ec2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.ec2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ec2-hero-trust {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ec2-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.ec2-trust-item svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.ec2-trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.ec2-hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Stats Bar */
.ec2-stats-bar {
  background: #081225;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 40px;
}

.ec2-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.ec2-stat-item h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue-400);
  margin: 0 0 4px;
  line-height: 1;
}

.ec2-stat-item p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.ec2-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Services Grid */
.ec2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ec2-svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ec2-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ec2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.ec2-svc-card:hover::before {
  transform: scaleX(1);
}

.ec2-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ec2-svc-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.ec2-svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us */
.ec2-why-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.ec2-why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ec2-why-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ec2-why-image-card {
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
  border: 2px solid var(--blue-200);
  position: relative;
}

.ec2-why-image-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(37, 99, 235, 0.12);
  pointer-events: none;
}

.ec2-why-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.ec2-why-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  border: 1px solid var(--blue-200);
  background: #eff6ff;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.ec2-why-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 16px;
}

.ec2-why-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 28px;
}

.ec2-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ec2-why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

/* Platforms Row */
.ec2-platforms-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ec2-plat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ec2-plat-icon {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ec2-plat-item:hover .ec2-plat-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ec2-plat-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Key Features */
.ec2-feat-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.ec2-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ec2-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ec2-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ec2-feat-item h5 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.ec2-feat-item p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.ec2-feat-image {
  position: relative;
}

.ec2-feat-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

/* Process */
.ec2-process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.ec2-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0, var(--blue-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.ec2-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.ec2-proc-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.ec2-proc-num {
  position: absolute;
  top: 46px;
  width: 22px;
  height: 22px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.ec2-proc-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.ec2-proc-step p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .ec2-hero-inner {
    grid-template-columns: 1fr;
  }

  .ec2-hero-visual {
    display: none;
  }

  .ec2-why-grid {
    grid-template-columns: 1fr;
  }

  .ec2-why-image {
    display: none;
  }

  .ec2-feat-layout {
    grid-template-columns: 1fr;
  }

  .ec2-feat-image {
    display: none;
  }

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

  .ec2-process-row::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .ec2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

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

  .ec2-why-section {
    padding: 60px 20px;
  }

  .ec2-stats-bar {
    padding: 24px 20px;
  }

  .ec2-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .ec2-stat-sep {
    display: none;
  }

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

@media (max-width: 480px) {
  .ec2-services-grid {
    grid-template-columns: 1fr;
  }

  .ec2-process-row {
    grid-template-columns: 1fr;
  }

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

  .ec2-hero-trust {
    flex-wrap: wrap;
    gap: 12px;
  }

  .ec2-trust-divider {
    display: none;
  }
}

/* ═══════════════════════════════════
   services-custom-software.HTML STYLES
═══════════════════════════════════ */

/* Hero */
.cs2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000d2e 0%, #001a5c 50%, #001233 100%);
  color: #fff;
  padding: 140px 40px 80px;
}

.cs2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cs2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.8) 45%, rgba(4, 11, 22, 0.35) 65%, rgba(4, 11, 22, 0.7) 100%);
}

.cs2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.cs2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs2-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.cs2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.cs2-hero-title .text-blue {
  color: var(--blue-400);
}

.cs2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.cs2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cs2-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs2-hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.cs2-hero-visual-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cs2-hero-visual-wrap img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 1;
}

/* Stats Row in Hero */
.cs2-stats-row {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.cs2-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs2-stat svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.cs2-stat strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.cs2-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  white-space: nowrap;
}

/* About / Who We Are */
.cs2-about-section {
  padding: 96px 40px;
  background: #fff;
}

.cs2-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cs2-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  display: block;
  margin-bottom: 14px;
}

.cs2-about-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 20px;
}

.cs2-about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 28px;
}

.cs2-about-image {
  display: flex;
  justify-content: center;
}

.cs2-about-image-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
  border: 2px solid var(--blue-200);
  position: relative;
  width: 100%;
}

.cs2-about-image-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

.cs2-about-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Expertise Grid - 5 columns */
.cs2-expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cs2-exp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cs2-exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cs2-exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.cs2-exp-card:hover::before {
  transform: scaleX(1);
}

.cs2-exp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs2-exp-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cs2-exp-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Tech Row */
.cs2-tech-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cs2-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cs2-tech-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cs2-tech-item:hover .cs2-tech-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cs2-tech-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Why Choose Us Grid - 3x2 */
.cs2-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cs2-why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}

.cs2-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--blue-200);
}

.cs2-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs2-why-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cs2-why-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Process - 6 steps */
.cs2-process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}

.cs2-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0, var(--blue-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.cs2-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}

.cs2-proc-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.cs2-proc-num {
  position: absolute;
  top: 46px;
  width: 22px;
  height: 22px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.cs2-proc-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.cs2-proc-step p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* CTA Section */
.cs2-cta-section {
  background: linear-gradient(135deg, #040e25 0%, #0d1f4a 50%, #0a1a3e 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cs2-cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cs2-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cs2-cta-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.cs2-cta-content h2 span {
  color: var(--blue-400);
}

.cs2-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.cs2-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cs2-cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cs2-cta-wa:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .cs2-expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cs2-process-row::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .cs2-hero-inner {
    grid-template-columns: 1fr;
  }

  .cs2-hero-visual {
    display: none;
  }

  .cs2-about-inner {
    grid-template-columns: 1fr;
  }

  .cs2-about-image {
    display: none;
  }

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

@media (max-width: 768px) {
  .cs2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .cs2-about-section {
    padding: 60px 20px;
  }

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

  .cs2-why-grid {
    grid-template-columns: 1fr;
  }

  .cs2-cta-section {
    padding: 60px 20px;
  }

  .cs2-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cs2-stats-row {
    gap: 18px;
  }

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

@media (max-width: 480px) {
  .cs2-expertise-grid {
    grid-template-columns: 1fr;
  }

  .cs2-process-row {
    grid-template-columns: 1fr;
  }

  .cs2-stats-row {
    gap: 14px;
  }
}

/* ═══════════════════════════════════
   services-content-writing.HTML STYLES
═══════════════════════════════════ */

/* Hero */
.cw2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #040b16;
  color: #fff;
  padding: 140px 40px 80px;
}

.cw2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cw2-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.cw2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.85) 50%, rgba(4, 11, 22, 0.4) 68%, rgba(4, 11, 22, 0.72) 100%);
}

.cw2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.cw2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cw2-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.cw2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.cw2-hero-title .text-blue {
  color: var(--blue-400);
}

.cw2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.cw2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cw2-hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.cw2-stats-row {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.cw2-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cw2-stat svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.cw2-stat strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.cw2-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  white-space: nowrap;
}

/* About / Who We Are */
.cw2-about-section {
  padding: 96px 40px;
  background: #fff;
}

.cw2-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cw2-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  display: block;
  margin-bottom: 14px;
}

.cw2-about-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 20px;
}

.cw2-about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 28px;
}

.cw2-about-image {
  display: flex;
  justify-content: center;
}

.cw2-about-image-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
  border: 2px solid var(--blue-200);
  position: relative;
  width: 100%;
}

.cw2-about-image-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

.cw2-about-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Services Grid - 5 cards (3+2) */
.cw2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cw2-svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cw2-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cw2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.cw2-svc-card:hover::before {
  transform: scaleX(1);
}

.cw2-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw2-svc-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cw2-svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us - 5 cards */
.cw2-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cw2-why-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
  text-align: center;
  align-items: center;
}

.cw2-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--blue-200);
  background: #fff;
}

.cw2-why-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw2-why-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cw2-why-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Process - 6 steps */
.cw2-process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}

.cw2-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0, var(--blue-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.cw2-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}

.cw2-proc-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.cw2-proc-num {
  position: absolute;
  top: 46px;
  width: 22px;
  height: 22px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f8fafc;
}

.cw2-proc-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.cw2-proc-step p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* CTA */
.cw2-cta-section {
  background: linear-gradient(135deg, #040e25 0%, #0d1f4a 50%, #0a1a3e 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cw2-cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cw2-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cw2-cta-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.cw2-cta-content h2 span {
  color: var(--blue-400);
}

.cw2-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.cw2-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cw2-cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cw2-cta-wa:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .cw2-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cw2-process-row::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .cw2-hero-inner {
    grid-template-columns: 1fr;
  }

  .cw2-hero-visual {
    display: none;
  }

  .cw2-about-inner {
    grid-template-columns: 1fr;
  }

  .cw2-about-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .cw2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .cw2-about-section {
    padding: 60px 20px;
  }

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

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

  .cw2-cta-section {
    padding: 60px 20px;
  }

  .cw2-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cw2-stats-row {
    gap: 18px;
  }

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

@media (max-width: 480px) {
  .cw2-services-grid {
    grid-template-columns: 1fr;
  }

  .cw2-why-grid {
    grid-template-columns: 1fr;
  }

  .cw2-process-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════
   services-seo.HTML STYLES
═══════════════════════════════════ */

/* Hero */
.seo2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #040b16;
  color: #fff;
  padding: 140px 40px 80px;
}

.seo2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.seo2-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.seo2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.85) 50%, rgba(4, 11, 22, 0.4) 68%, rgba(4, 11, 22, 0.72) 100%);
}

.seo2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.seo2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seo2-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.seo2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.seo2-hero-title .text-blue {
  color: var(--blue-400);
}

.seo2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.seo2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.seo2-hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.seo2-stats-row {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.seo2-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo2-stat svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.seo2-stat strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.seo2-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  white-space: nowrap;
}

/* About */
.seo2-about-section {
  padding: 96px 40px;
  background: #fff;
}

.seo2-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.seo2-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  display: block;
  margin-bottom: 14px;
}

.seo2-about-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 20px;
}

.seo2-about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 28px;
}

.seo2-about-image {
  display: flex;
  justify-content: center;
}

.seo2-about-image-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
  border: 2px solid var(--blue-200);
  position: relative;
  width: 100%;
}

.seo2-about-image-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

.seo2-about-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Services Grid - 3x2 */
.seo2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.seo2-svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.seo2-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.seo2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.seo2-svc-card:hover::before {
  transform: scaleX(1);
}

.seo2-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seo2-svc-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.seo2-svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us - 5 cards in row */
.seo2-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.seo2-why-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}

.seo2-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--blue-200);
  background: #fff;
}

.seo2-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seo2-why-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.seo2-why-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Process - 6 steps */
.seo2-process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}

.seo2-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0, var(--blue-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.seo2-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 4px;
}

.seo2-proc-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.seo2-proc-num {
  position: absolute;
  top: 46px;
  width: 22px;
  height: 22px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f8fafc;
}

.seo2-proc-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.seo2-proc-step p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* CTA */
.seo2-cta-section {
  background: linear-gradient(135deg, #040e25 0%, #0d1f4a 50%, #0a1a3e 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.seo2-cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.seo2-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.seo2-cta-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.seo2-cta-content h2 span {
  color: var(--blue-400);
}

.seo2-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.seo2-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.seo2-cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.seo2-cta-wa:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .seo2-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .seo2-process-row::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .seo2-hero-inner {
    grid-template-columns: 1fr;
  }

  .seo2-hero-visual {
    display: none;
  }

  .seo2-about-inner {
    grid-template-columns: 1fr;
  }

  .seo2-about-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .seo2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .seo2-about-section {
    padding: 60px 20px;
  }

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

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

  .seo2-cta-section {
    padding: 60px 20px;
  }

  .seo2-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .seo2-stats-row {
    gap: 18px;
  }

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

@media (max-width: 480px) {
  .seo2-services-grid {
    grid-template-columns: 1fr;
  }

  .seo2-why-grid {
    grid-template-columns: 1fr;
  }

  .seo2-services-grid {
    grid-template-columns: 1fr;
  }

  .seo2-why-grid {
    grid-template-columns: 1fr;
  }

  .seo2-process-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════
   services-social-media-management.HTML STYLES
═══════════════════════════════════ */

/* Hero */
.smm2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000d2e 0%, #001a5c 50%, #001233 100%);
  color: #fff;
  padding: 140px 40px 80px;
}

.smm2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.smm2-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.smm2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.85) 50%, rgba(4, 11, 22, 0.4) 68%, rgba(4, 11, 22, 0.72) 100%);
}

.smm2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.smm2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.smm2-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.smm2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.smm2-hero-title .text-blue {
  color: var(--blue-400);
}

.smm2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.smm2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.smm2-hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.smm2-stats-row {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.smm2-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.smm2-stat svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.smm2-stat strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.smm2-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  white-space: nowrap;
}

/* About */
.smm2-about-section {
  padding: 96px 40px;
  background: #fff;
}

.smm2-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.smm2-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  display: block;
  margin-bottom: 14px;
}

.smm2-about-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 20px;
}

.smm2-about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 28px;
}

.smm2-about-image {
  display: flex;
  justify-content: center;
}

.smm2-about-image-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
  border: 2px solid var(--blue-200);
  position: relative;
  width: 100%;
}

.smm2-about-image-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

.smm2-about-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Services Grid - 3x2 */
.smm2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.smm2-svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.smm2-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.smm2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.smm2-svc-card:hover::before {
  transform: scaleX(1);
}

.smm2-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.smm2-svc-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.smm2-svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us - 5 cards */
.smm2-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.smm2-why-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}

.smm2-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--blue-200);
  background: #fff;
}

.smm2-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.smm2-why-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.smm2-why-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Process - 6 steps */
.smm2-process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}

.smm2-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0, var(--blue-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.smm2-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 4px;
}

.smm2-proc-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.smm2-proc-num {
  position: absolute;
  top: 46px;
  width: 22px;
  height: 22px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f8fafc;
}

.smm2-proc-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.smm2-proc-step p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* CTA */
.smm2-cta-section {
  background: linear-gradient(135deg, #040e25 0%, #0d1f4a 50%, #0a1a3e 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.smm2-cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.smm2-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.smm2-cta-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.smm2-cta-content h2 span {
  color: var(--blue-400);
}

.smm2-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.smm2-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.smm2-cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.smm2-cta-wa:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .smm2-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .smm2-process-row::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .smm2-hero-inner {
    grid-template-columns: 1fr;
  }

  .smm2-hero-visual {
    display: none;
  }

  .smm2-about-inner {
    grid-template-columns: 1fr;
  }

  .smm2-about-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .smm2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .smm2-about-section {
    padding: 60px 20px;
  }

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

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

  .smm2-cta-section {
    padding: 60px 20px;
  }

  .smm2-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .smm2-stats-row {
    gap: 18px;
  }

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

@media (max-width: 480px) {
  .smm2-services-grid {
    grid-template-columns: 1fr;
  }

  .smm2-why-grid {
    grid-template-columns: 1fr;
  }

  .smm2-process-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════
   services-social-media-ads.HTML STYLES
═══════════════════════════════════ */

/* Hero */
.smad2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #040b16;
  color: #fff;
  padding: 140px 40px 80px;
}

.smad2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.smad2-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.smad2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.85) 50%, rgba(4, 11, 22, 0.4) 68%, rgba(4, 11, 22, 0.72) 100%);
}

.smad2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.smad2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.smad2-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.smad2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.smad2-hero-title .text-blue {
  color: var(--blue-400);
}

.smad2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.smad2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.smad2-hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Trust Row */
.smad2-trust-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.smad2-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  padding: 0 18px;
}

.smad2-trust-item:first-child {
  padding-left: 0;
}

.smad2-trust-item svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.smad2-trust-div {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* About */
.smad2-about-section {
  padding: 96px 40px;
  background: #fff;
}

.smad2-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.smad2-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  display: block;
  margin-bottom: 14px;
}

.smad2-about-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 20px;
}

.smad2-about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 28px;
}

.smad2-about-image {
  display: flex;
  justify-content: center;
}

.smad2-about-image-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
  border: 2px solid var(--blue-200);
  position: relative;
  width: 100%;
}

.smad2-about-image-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

.smad2-about-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Services Grid - 3x2 */
.smad2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.smad2-svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.smad2-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.smad2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.smad2-svc-card:hover::before {
  transform: scaleX(1);
}

.smad2-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.smad2-svc-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.smad2-svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us - 5 cards */
.smad2-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.smad2-why-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}

.smad2-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--blue-200);
  background: #fff;
}

.smad2-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.smad2-why-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.smad2-why-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Platforms */
.smad2-platforms-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.smad2-plat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.smad2-plat-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.smad2-plat-item:hover .smad2-plat-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.smad2-plat-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* CTA */
.smad2-cta-section {
  background: linear-gradient(135deg, #040e25 0%, #0d1f4a 50%, #0a1a3e 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.smad2-cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.smad2-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.smad2-cta-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.smad2-cta-content h2 span {
  color: var(--blue-400);
}

.smad2-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.smad2-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.smad2-cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.smad2-cta-wa:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .smad2-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .smad2-hero-inner {
    grid-template-columns: 1fr;
  }

  .smad2-hero-visual {
    display: none;
  }

  .smad2-about-inner {
    grid-template-columns: 1fr;
  }

  .smad2-about-image {
    display: none;
  }

  .smad2-trust-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .smad2-trust-div {
    display: none;
  }

  .smad2-trust-item {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .smad2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .smad2-about-section {
    padding: 60px 20px;
  }

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

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

  .smad2-cta-section {
    padding: 60px 20px;
  }

  .smad2-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .smad2-platforms-row {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .smad2-services-grid {
    grid-template-columns: 1fr;
  }

  .smad2-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════
   services-google-ads.HTML STYLES
═══════════════════════════════════ */

/* Hero */
.gad2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #040b16;
  color: #fff;
  padding: 140px 40px 80px;
}

.gad2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gad2-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.gad2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 11, 22, 1) 0%, rgba(4, 11, 22, 0.85) 50%, rgba(4, 11, 22, 0.4) 68%, rgba(4, 11, 22, 0.72) 100%);
}

.gad2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.gad2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gad2-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.gad2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.gad2-hero-title .text-blue {
  color: var(--blue-400);
}

.gad2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.gad2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gad2-hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.gad2-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gad2-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  padding: 0 16px;
}

.gad2-trust-item:first-child {
  padding-left: 0;
}

.gad2-trust-item svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.gad2-trust-div {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* About */
.gad2-about-section {
  padding: 96px 40px;
  background: #fff;
}

.gad2-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.gad2-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  display: block;
  margin-bottom: 14px;
}

.gad2-about-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 16px;
}

.gad2-about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 24px;
}

.gad2-stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.gad2-stat-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}

.gad2-stat-card strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-600);
}

.gad2-stat-card span {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.gad2-about-image {
  display: flex;
  justify-content: center;
}

.gad2-about-image-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
  border: 2px solid var(--blue-200);
  position: relative;
  width: 100%;
}

.gad2-about-image-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

.gad2-about-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Services Grid */
.gad2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gad2-svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gad2-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.gad2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.gad2-svc-card:hover::before {
  transform: scaleX(1);
}

.gad2-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gad2-svc-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.gad2-svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us - split layout */
.gad2-why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gad2-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.gad2-why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.gad2-why-check {
  width: 32px;
  height: 32px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.gad2-why-list li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.gad2-why-list li p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Performance Card */
.gad2-perf-card {
  background: #0a1628;
  border-radius: 20px;
  padding: 28px;
  color: #fff;
}

.gad2-perf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.gad2-perf-header h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.gad2-perf-legend {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gad2-leg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.gad2-perf-legend span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.gad2-perf-chart {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 130px;
}

.gad2-perf-chart svg {
  width: 100%;
  height: 130px;
}

.gad2-perf-months {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  margin-bottom: 20px;
}

.gad2-perf-months span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.gad2-perf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gad2-perf-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gad2-ps-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.gad2-ps-val {
  font-family: 'Exo 2', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}

.gad2-ps-trend {
  font-size: 11px;
  font-weight: 700;
}

.gad2-ps-trend.up {
  color: #10b981;
}

.gad2-ps-trend.down {
  color: #10b981;
}

/* Platforms */
.gad2-platforms-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.gad2-plat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gad2-plat-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gad2-plat-item:hover .gad2-plat-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.gad2-plat-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* CTA */
.gad2-cta-section {
  background: linear-gradient(135deg, #040e25 0%, #0d1f4a 50%, #0a1a3e 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.gad2-cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.gad2-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.gad2-cta-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.gad2-cta-content h2 span {
  color: var(--blue-400);
}

.gad2-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.gad2-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.gad2-cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.gad2-cta-wa:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .gad2-stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .gad2-hero-inner {
    grid-template-columns: 1fr;
  }

  .gad2-hero-visual {
    display: none;
  }

  .gad2-about-inner {
    grid-template-columns: 1fr;
  }

  .gad2-about-image {
    display: none;
  }

  .gad2-why-row {
    grid-template-columns: 1fr;
  }

  .gad2-trust-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .gad2-trust-div {
    display: none;
  }

  .gad2-trust-item {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .gad2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .gad2-about-section {
    padding: 60px 20px;
  }

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

  .gad2-cta-section {
    padding: 60px 20px;
  }

  .gad2-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .gad2-platforms-row {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .gad2-services-grid {
    grid-template-columns: 1fr;
  }

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

/* ═══════════════════════════════════
   industry-news.HTML STYLES
═══════════════════════════════════ */

/* Hero */
.news2-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000d2e 0%, #001a5c 50%, #001233 100%);
  color: #fff;
  padding: 140px 40px 80px;
}

.news2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news2-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
}

.news2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.news2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news2-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.news2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.news2-hero-title .text-blue {
  color: var(--blue-400);
}

.news2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}

.news2-hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news2-tag {
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

/* Hero Visual */
.news2-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news2-hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.news2-hero-visual-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.news2-hero-visual-wrap img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 1;
}

/* Layout */
.news2-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

/* Featured Label */
.news2-featured-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Featured Card */
.news2-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.news2-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(37, 99, 235, 0.1);
  border-color: var(--blue-200);
}

.news2-featured-img {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.news2-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news2-featured-card:hover .news2-featured-img img {
  transform: scale(1.04);
}

.news2-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.news2-featured-body {
  padding: 36px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.news2-featured-body h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.news2-featured-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Divider Label */
.news2-divider-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

/* Standard Cards */
.news2-main {
  display: flex;
  flex-direction: column;
}

.news2-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.news2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--blue-200);
}

.news2-card-img {
  position: relative;
  overflow: hidden;
}

.news2-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news2-card:hover .news2-card-img img {
  transform: scale(1.04);
}

.news2-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.news2-card-body h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0;
}

.news2-card-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Meta */
.news2-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news2-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.news2-date svg {
  flex-shrink: 0;
}

.news2-read-time {
  font-size: 12px;
  color: var(--blue-600);
  font-weight: 600;
  background: var(--blue-50, #eff6ff);
  padding: 2px 10px;
  border-radius: 20px;
}

/* Read More Button */
.news2-read-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-600);
  text-decoration: none;
  margin-top: 4px;
  gap: 4px;
  transition: gap 0.2s ease;
}

.news2-read-btn:hover {
  gap: 8px;
}

/* Sidebar */
.news2-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news2-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.news2-widget-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--blue-100);
  position: relative;
}

.news2-widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--blue-600);
}

.news2-widget-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news2-widget-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.news2-widget-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news2-widget-link:hover {
  color: var(--blue-600);
}

.news2-wl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* Categories */
.news2-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news2-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.news2-cat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news2-cat-count {
  background: var(--blue-50, #eff6ff);
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

/* CTA Widget */
.news2-cta-widget {
  background: linear-gradient(135deg, #0d1f4a, #1a3a8f);
  border: none;
  text-align: center;
}

.news2-cta-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.news2-cta-widget h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.news2-cta-widget p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 20px;
}

.news2-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--blue-700, #1d4ed8);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.news2-cta-btn:hover {
  background: var(--blue-50, #eff6ff);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1100px) {
  .news2-layout {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .news2-hero-inner {
    grid-template-columns: 1fr;
  }

  .news2-hero-visual {
    display: none;
  }
}

@media (max-width: 900px) {
  .news2-layout {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .news2-featured-card {
    grid-template-columns: 1fr;
  }

  .news2-featured-img {
    min-height: 240px;
  }

  .news2-card {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 768px) {
  .news2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .news2-card {
    grid-template-columns: 1fr;
  }

  .news2-card-img {
    height: 200px;
  }
}

/* ═══════════════════════════════════
   portfolio-case-study-real-estate.HTML STYLES
═══════════════════════════════════ */

/* Hero */
.re2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000d2e 0%, #001a5c 50%, #001233 100%);
  color: #fff;
  padding: 140px 40px 80px;
}

.re2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.re2-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
}

.re2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.re2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.re2-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.re2-breadcrumbs .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: var(--blue-400);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.re2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}

.re2-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

.re2-hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.re2-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.re2-stat-item svg {
  width: 20px;
  height: 20px;
  color: var(--blue-400);
  flex-shrink: 0;
}

.re2-s-text strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.re2-s-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.re2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Graphic */
.re2-hero-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.re2-hero-graphic::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.re2-glass-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 16px;
  z-index: 10;
  animation: floatBadge 4s ease-in-out infinite;
}

.re2-glass-badge.badge1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.re2-glass-badge.badge2 {
  top: 38%;
  left: -30px;
  animation-delay: 1.2s;
}

.re2-glass-badge.badge3 {
  bottom: 8%;
  right: 0;
  animation-delay: 2.4s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.b-icon {
  width: 32px;
  height: 32px;
  background: rgba(37, 99, 235, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b-icon svg {
  width: 16px;
  height: 16px;
  color: var(--blue-400);
}

.b-text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.b-text span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
}

/* Laptop Mockup */
.re2-laptop {
  position: relative;
  width: 380px;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.7));
}

.re2-laptop.sm {
  width: 220px;
}

.re2-l-screen {
  background: #0f172a;
  border-radius: 12px 12px 0 0;
  border: 6px solid #1e293b;
  overflow: hidden;
  padding-bottom: 6px;
}

.re2-lb-header {
  background: #1e293b;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.re2-dots {
  display: flex;
  gap: 4px;
}

.re2-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}

.re2-addressbar {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  padding: 3px 8px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.re2-lb-content {
  min-height: 200px;
}

.re2-lb-hero {
  padding: 16px;
}

.re2-lb-hero h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.re2-searchbar {
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}

.re2-searchbar span:first-child,
.re2-searchbar span:nth-child(2) {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 8px;
}

.s-btn {
  margin-left: auto;
  background: var(--blue-600);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.re2-lb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px 16px;
}

.l-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
}

.lc-img {
  height: 40px;
  background: linear-gradient(135deg, #1e3a6e, rgba(37, 99, 235, 0.25));
}

.lc-t {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  margin: 6px;
  border-radius: 3px;
}

.re2-l-base {
  height: 14px;
  background: #1e293b;
  border-radius: 0 0 4px 4px;
  margin: 0 20px;
}

/* Mobile Mockup */
.re2-mobile {
  position: absolute;
  right: -20px;
  bottom: 20px;
  width: 100px;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.6));
  z-index: 5;
}

.re2-mobile.sm {
  position: relative;
  right: auto;
  bottom: auto;
  width: 80px;
}

.re2-m-screen {
  background: #0f172a;
  border-radius: 14px;
  border: 4px solid #1e293b;
  overflow: hidden;
  min-height: 160px;
}

.re2-m-header {
  background: #1e293b;
  padding: 6px;
  display: flex;
  justify-content: center;
}

.re2-m-header span {
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.re2-m-content {
  padding: 8px;
}

.re2-m-hero {
  background: var(--blue-700, #1d4ed8);
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  text-align: center;
  padding: 8px 4px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.re2-m-card {
  margin-bottom: 5px;
}

.mc-img {
  height: 28px;
  background: linear-gradient(135deg, #1e3a6e, rgba(37, 99, 235, 0.25));
  border-radius: 4px;
}

/* Client & Challenges */
.re2-cc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.re2-about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.re2-challenges-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.re2-cc-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #040e25, #0a2050);
}

.re2-cc-content {
  position: relative;
  z-index: 1;
  padding: 36px;
}

.re2-c-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 24px;
}

.re2-ac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.ac-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ac-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-50, #eff6ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ac-icon svg {
  width: 18px;
  height: 18px;
}

.ac-text span {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.ac-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.re2-ac-desc p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.re2-clist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.re2-clist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.re2-clist li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Approach Cards */
.re2-approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.re2-acard {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.re2-acard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--blue-200);
  background: #fff;
}

.a-icon {
  width: 52px;
  height: 52px;
  background: #eff6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.a-icon svg {
  width: 24px;
  height: 24px;
}

.a-text h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.a-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Solution Split */
.re2-solution-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.re2-ss-graphics {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.re2-ss-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.re2-ss-features h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 24px;
}

.re2-flist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.re2-flist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.re2-flist li svg {
  width: 20px;
  height: 20px;
  color: var(--blue-500);
  flex-shrink: 0;
}

/* Impact */
.re2-impact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.re2-imc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.re2-im-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px 16px;
}

.re2-im-card strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #10b981;
  margin-bottom: 4px;
}

.re2-im-card span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin-bottom: 12px;
}

.mc-chart svg {
  width: 100%;
  height: 30px;
}

.re2-im-chart-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
}

.re2-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.re2-chart-header h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.re2-ch-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.c-bef {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.c-aft {
  font-size: 11px;
  color: var(--blue-400);
  font-weight: 600;
}

.c-tot {
  font-size: 12px;
  font-weight: 700;
  color: #10b981;
}

.re2-svg-chart {
  width: 100%;
}

.re2-svg-chart svg {
  width: 100%;
}

.x-axis {
  display: flex;
  justify-content: space-between;
  padding: 8px 2px 0;
}

.x-axis span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

/* Before vs After */
.re2-ba-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.re2-ba-card {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.re2-ba-card.before {
  border-color: #fecaca;
}

.re2-ba-card.after {
  border-color: #a7f3d0;
}

.ba-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.re2-ba-card.before .ba-header {
  background: #fff5f5;
}

.re2-ba-card.after .ba-header {
  background: #f0fdf9;
}

.ba-header svg {
  width: 20px;
  height: 20px;
}

.ba-content {
  padding: 24px;
}

.ba-img-dummy {
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  min-height: 100px;
}

.ba-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.ba-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.re2-ba-arrow {
  width: 48px;
  height: 48px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.re2-ba-arrow svg {
  width: 22px;
  height: 22px;
}

/* Tech & Testimonial */
.re2-tt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.re2-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.t-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.t-chip:hover {
  border-color: var(--blue-300);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.t-chip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.re2-testim-card {
  background: linear-gradient(135deg, #040e25, #0a2050);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.re2-testim-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.quote-icon {
  margin-bottom: 16px;
}

.quote-icon svg {
  width: 40px;
  height: 40px;
}

.re2-testim-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-400);
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}

.re2-testim-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin: 0 0 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.re2-t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.re2-t-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.a-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.a-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.a-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .re2-hero-inner {
    grid-template-columns: 1fr;
  }

  .re2-hero-graphic {
    display: none;
  }

  .re2-cc-split {
    grid-template-columns: 1fr;
  }

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

  .re2-solution-split {
    grid-template-columns: 1fr;
  }

  .re2-ss-graphics {
    display: none;
  }

  .re2-impact-split {
    grid-template-columns: 1fr;
  }

  .re2-tt-split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .re2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .re2-approach-cards {
    grid-template-columns: 1fr;
  }

  .re2-ba-container {
    grid-template-columns: 1fr;
  }

  .re2-ba-arrow {
    display: none;
  }

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

  .re2-ac-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .re2-imc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════
   MOBILE APP V3 STYLES
═══════════════════════════════════ */

/* Hero Section */
.mob3-hero {
  position: relative;
  padding: 120px 20px 80px;
  background: #000b21;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.mob3-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 70% 50%, #001f5c 0%, #000b21 70%);
}

.mob3-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 11, 33, 1) 0%, rgba(0, 11, 33, 0.85) 45%, rgba(0, 11, 33, 0.4) 65%, rgba(0, 11, 33, 0.72) 100%);
  pointer-events: none;
}

.mob3-hero-rings {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, transparent 30%, rgba(37, 99, 235, 0.05) 31%, transparent 32%, transparent 40%, rgba(37, 99, 235, 0.05) 41%, transparent 42%);
  pointer-events: none;
}

.mob3-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.mob3-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mob3-breadcrumbs {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.mob3-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}

.mob3-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}

.mob3-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.mob3-hero-stats {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.mob3-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
}

.mob3-stat-item svg {
  color: var(--blue-400);
  flex-shrink: 0;
  margin-top: 2px;
  width: 22px;
  height: 22px;
}

.mob3-stat-text h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 2px;
  line-height: 1.2;
  color: #fff;
}

.mob3-stat-text span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.3;
  display: block;
}

.mob3-hero-visual {
  position: relative;
}

.mob3-hero-visual img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}

/* What We Offer Grid */
.mob3-offer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.mob3-offer-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  flex: 1 1 300px;
  max-width: calc(33.333% - 16px);
  min-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.mob3-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mob3-offer-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-600);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mob3-offer-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1e293b;
}

.mob3-offer-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Technologies Pills */
.mob3-tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.mob3-tech-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 600;
  font-size: 14px;
  color: #1e293b;
  transition: all 0.3s ease;
}

.mob3-tech-pill:hover {
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.2);
}

.mob3-tech-pill img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Why Choose Us Grid */
.mob3-why-bg-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, transparent 20%, rgba(37, 99, 235, 0.03) 21%, transparent 22%, transparent 35%, rgba(37, 99, 235, 0.03) 36%, transparent 37%, transparent 50%, rgba(37, 99, 235, 0.03) 51%, transparent 52%);
  z-index: 0;
  pointer-events: none;
}

.mob3-why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.mob3-why-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mob3-why-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.mob3-why-item:hover .mob3-why-icon {
  transform: scale(1.1);
  color: #fff;
  background: var(--blue-600);
}

.mob3-why-item h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px;
}

.mob3-why-item p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Process Timeline */
.mob3-process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}

.mob3-process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.2) 0, rgba(37, 99, 235, 0.2) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.mob3-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mob3-proc-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin-bottom: 16px;
  background-clip: padding-box;
  transition: all 0.3s ease;
}

.mob3-proc-step:hover .mob3-proc-icon {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.mob3-proc-num {
  width: 24px;
  height: 24px;
  background: var(--blue-600);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 56px;
  margin-left: 0;
  border: 3px solid #fff;
}

.mob3-proc-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 24px 0 0;
  color: #1e293b;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
  .mob3-why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }

  .mob3-process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }

  .mob3-process-timeline::before {
    display: none;
  }

  .mob3-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mob3-hero-content {
    align-items: center;
  }

  .mob3-hero-desc {
    margin: 0 auto;
  }

  .mob3-hero-actions {
    justify-content: center;
  }

  .mob3-hero-stats {
    justify-content: center;
  }

  .mob3-who-section .section-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mob3-who-content {
    order: 2;
  }

  .mob3-who-image {
    order: 1;
    margin-bottom: 30px;
  }

  .mob3-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

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

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

  .mob3-offer-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .mob3-why-grid {
    grid-template-columns: 1fr;
  }

  .mob3-process-timeline {
    grid-template-columns: 1fr;
  }

  .mob3-hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* ═══════════════════════════════════
   E-COMMERCE V3 STYLES
═══════════════════════════════════ */

/* ZigZag Layout */
.ec3-zigzag-section {
  padding: 100px 20px;
  background: #fff;
}

.ec3-zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.ec3-zigzag-row:last-child {
  margin-bottom: 0;
}

.ec3-zigzag-reverse .ec3-zigzag-content {
  order: 2;
}

.ec3-zigzag-reverse .ec3-zigzag-image {
  order: 1;
}

.ec3-zigzag-content {
  display: flex;
  flex-direction: column;
}

.ec3-img-wrap {
  position: relative;
  border-radius: 24px;
  z-index: 1;
}

.ec3-img-wrap img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: block;
  position: relative;
  z-index: 2;
}

.ec3-img-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#3b82f6 2px, transparent 2px);
  background-size: 16px 16px;
  z-index: 0;
  opacity: 0.4;
}

.ec3-img-wrap-right .ec3-img-dots {
  top: -20px;
  right: -20px;
}

.ec3-img-wrap-left .ec3-img-dots {
  bottom: -20px;
  left: -20px;
}

/* Why Choose Us Grid */
.ec3-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ec3-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.ec3-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.ec3-why-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--blue-600);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ec3-why-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px;
}

.ec3-why-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .ec3-zigzag-row {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ec3-zigzag-reverse .ec3-zigzag-content {
    order: 1;
  }

  .ec3-zigzag-reverse .ec3-zigzag-image {
    order: 2;
  }

  .ec3-img-wrap-right .ec3-img-dots,
  .ec3-img-wrap-left .ec3-img-dots {
    display: none;
  }

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

@media (max-width: 768px) {
  .ec3-why-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════
   CASE STUDY MOBILE APP (csmob)
═══════════════════════════════════ */

/* Hero */
.csmob-hero {
  background: #030a1b;
  color: #fff;
  padding: 120px 20px 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--blue-600);
}

.csmob-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.csmob-hero-content {
  flex: 1;
  max-width: 650px;
}

.csmob-top-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.csmob-tag {
  background: var(--blue-600);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.csmob-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.csmob-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.csmob-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.csmob-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.csmob-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--blue-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.csmob-stat-text strong {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.csmob-stat-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  display: block;
}

.csmob-hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.csmob-case-study-label {
  position: absolute;
  top: -30px;
  right: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.csmob-case-study-label .dot {
  width: 8px;
  height: 8px;
  background: var(--blue-500);
  border-radius: 50%;
}

.csmob-hero-visual img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Section Title */
.csmob-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Split Row */
.csmob-split-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.csmob-overview-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.csmob-oc-top {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.csmob-oc-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #00205B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csmob-oc-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.csmob-oc-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.csmob-oc-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.csmob-oc-item strong {
  font-size: 14px;
  color: var(--text-primary);
}

.csmob-overview-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.csmob-challenge {
  position: relative;
}

.csmob-ch-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 380px;
  position: relative;
  z-index: 2;
}

.csmob-ch-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.csmob-ch-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csmob-ch-item span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.csmob-ch-image {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 350px;
  z-index: 1;
  pointer-events: none;
}

.csmob-ch-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Solution Row */
.csmob-solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.csmob-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}

.csmob-sol-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.csmob-sol-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csmob-sol-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.csmob-sol-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.csmob-sol-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Results */
.csmob-results-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.csmob-rs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}

.csmob-rs-icon {
  color: var(--blue-500);
}

.csmob-rs-text strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.csmob-rs-text span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  display: block;
}

/* Bottom Row */
.csmob-bottom-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.csmob-testimonial {
  background: #0f172a;
  border-radius: 12px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.csmob-quote-mark {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 120px;
  font-family: serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.csmob-testimonial p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.csmob-test-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.csmob-test-author strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.csmob-test-author span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.csmob-stars {
  display: flex;
  gap: 4px;
}

.csmob-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.csmob-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.csmob-tech-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.csmob-tech-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Responsive CSMOB */
@media (max-width: 1024px) {
  .csmob-hero-inner {
    flex-direction: column;
  }

  .csmob-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .csmob-top-label {
    justify-content: center;
  }

  .csmob-case-study-label {
    display: none;
  }

  .csmob-split-row {
    grid-template-columns: 1fr;
  }

  .csmob-ch-image {
    position: relative;
    right: 0;
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
  }

  .csmob-ch-list {
    max-width: 100%;
  }

  .csmob-solution-row {
    grid-template-columns: 1fr;
  }

  .csmob-bottom-row {
    grid-template-columns: 1fr;
  }

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

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

  .csmob-sol-grid {
    grid-template-columns: 1fr;
  }

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

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

/* ═══════════════════════════════════
   CASE STUDY HOSPITAL (cshosp)
═══════════════════════════════════ */

/* Hero */
.cshosp-hero {
  background: #010613;
  color: #fff;
  padding: 120px 20px 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--blue-600);
}

.cshosp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cshosp-hero-content {
  flex: 1;
  max-width: 600px;
}

.cshosp-top-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.cshosp-tag {
  background: var(--blue-600);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.cshosp-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cshosp-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.cshosp-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cshosp-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.cshosp-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--blue-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cshosp-stat-text strong {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.cshosp-stat-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  display: block;
  text-transform: uppercase;
}

.cshosp-hero-visual {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.cshosp-case-study-label {
  position: absolute;
  top: -30px;
  right: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cshosp-case-study-label .dot {
  width: 8px;
  height: 8px;
  background: var(--blue-500);
  border-radius: 50%;
}

.cshosp-hero-visual img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* Section Title */
.cshosp-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Split Row (Overview & Challenge) */
.cshosp-split-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: stretch;
}

.cshosp-overview-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.cshosp-oc-top {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.cshosp-oc-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e0e7ff;
  color: #00205B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cshosp-oc-icon svg {
  width: 40px;
  height: 40px;
}

.cshosp-oc-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.cshosp-oc-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cshosp-oc-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.cshosp-oc-item strong {
  font-size: 14px;
  color: var(--text-primary);
}

.cshosp-overview-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cshosp-challenge {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cshosp-ch-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.cshosp-ch-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cshosp-ch-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blue-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cshosp-ch-item span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  font-weight: 500;
}

.cshosp-ch-image {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 380px;
  z-index: 1;
  pointer-events: none;
}

.cshosp-ch-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Split Row Solution & Roadmap */
.cshosp-split-row-sol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cshosp-sol-col,
.cshosp-roadmap-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.cshosp-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}

.cshosp-sol-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cshosp-sol-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--blue-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cshosp-sol-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.cshosp-sol-text p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.cshosp-roadmap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 20px;
}

.cshosp-roadmap::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: repeating-linear-gradient(to right, transparent, transparent 5px, var(--blue-200) 5px, var(--blue-200) 10px);
  z-index: 0;
}

.cshosp-rm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.cshosp-rm-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: var(--blue-600);
  margin-bottom: 8px;
}

.cshosp-rm-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cshosp-rm-item p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
  max-width: 120px;
}

/* Results */
.cshosp-results-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.cshosp-rs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.cshosp-rs-icon {
  color: var(--blue-500);
}

.cshosp-rs-text strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.cshosp-rs-text span {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
  text-transform: uppercase;
}

/* Bottom Row */
.cshosp-bottom-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.cshosp-testimonial {
  background: #001b4d;
  border-radius: 12px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cshosp-quote-mark {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 120px;
  font-family: serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.cshosp-testimonial p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cshosp-test-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.cshosp-test-author strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.cshosp-test-author span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.cshosp-stars {
  display: flex;
  gap: 4px;
}

.cshosp-technologies {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cshosp-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cshosp-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cshosp-tech-item img {
  height: 32px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.cshosp-tech-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* CTA Banner */
.cshosp-cta-banner {
  background: #00205B;
  padding: 40px 20px;
  margin-top: 60px;
  margin-bottom: 40px;
  border-radius: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cshosp-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cshosp-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cshosp-cta-text {
  flex: 1;
}

.cshosp-cta-text h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  font-family: 'Exo 2', sans-serif;
}

.cshosp-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin: 0;
}

.cshosp-cta-btn {
  background: var(--blue-500);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  transition: all 0.3s;
  white-space: nowrap;
}

.cshosp-cta-btn:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
}

/* Responsive CSHOSP */
@media (max-width: 1024px) {
  .cshosp-hero-inner {
    flex-direction: column;
  }

  .cshosp-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .cshosp-top-label {
    justify-content: center;
  }

  .cshosp-case-study-label {
    display: none;
  }

  .cshosp-split-row {
    grid-template-columns: 1fr;
  }

  .cshosp-ch-image {
    position: relative;
    right: 0;
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
  }

  .cshosp-ch-list {
    max-width: 100%;
  }

  .cshosp-split-row-sol {
    grid-template-columns: 1fr;
  }

  .cshosp-roadmap {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding-top: 0;
  }

  .cshosp-roadmap::before {
    display: none;
  }

  .cshosp-bottom-row {
    grid-template-columns: 1fr;
  }

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

  .cshosp-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cshosp-cta-banner {
    border-radius: 0;
    margin: 60px 0 0 0;
    max-width: 100%;
  }
}

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

  .cshosp-sol-grid {
    grid-template-columns: 1fr;
  }

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

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

/* ═══════════════════════════════════
   CASE STUDY REAL ESTATE (csre)
═══════════════════════════════════ */

/* Hero */
.csre-hero {
  background: #030a1b;
  color: #fff;
  padding: 120px 20px 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--blue-600);
}

.csre-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.csre-hero-content {
  flex: 1;
  max-width: 580px;
}

.csre-top-label {
  margin-bottom: 20px;
}

.csre-tag {
  background: var(--blue-600);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
}

.csre-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.csre-highlight {
  color: #3b82f6;
}

.csre-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}

.csre-stats-row {
  display: flex;
  gap: 24px;
}

.csre-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  flex: 1;
  min-width: 0;
}

.csre-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csre-stat-text strong {
  font-size: 22px;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
  color: #fff;
}

.csre-stat-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.csre-hero-visual {
  flex: 1.3;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.csre-case-study-label {
  position: absolute;
  top: -36px;
  right: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.csre-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-500);
  border-radius: 50%;
  display: inline-block;
}

.csre-hero-visual img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

/* Section Title */
.csre-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Overview & Challenge */
.csre-split-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.csre-overview-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.csre-oc-top {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.csre-oc-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e0e7ff;
  color: #00205B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csre-oc-icon svg {
  width: 40px;
  height: 40px;
}

.csre-oc-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.csre-oc-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.csre-oc-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.csre-oc-item strong {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
}

.csre-overview-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.csre-challenge {
  position: relative;
}

.csre-ch-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.csre-ch-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.csre-ch-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.csre-ch-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csre-ch-item span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.45;
  font-weight: 500;
}

.csre-ch-image {
  width: 240px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.csre-ch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Solution */
.csre-sol-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.csre-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.csre-sol-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.csre-sol-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csre-sol-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.csre-sol-text p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.csre-sol-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 32, 91, 0.12);
}

.csre-sol-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Results */
.csre-results-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.csre-rs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  transition: box-shadow 0.2s;
}

.csre-rs-item:hover {
  box-shadow: 0 8px 24px rgba(0, 32, 91, 0.08);
}

.csre-rs-icon {
  color: var(--blue-500);
}

.csre-rs-text strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.csre-rs-text span {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
  text-transform: uppercase;
}

/* Bottom Row */
.csre-bottom-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

.csre-testimonial {
  background: #001b4d;
  border-radius: 12px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.csre-quote-mark {
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 120px;
  font-family: serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.csre-testimonial p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.csre-test-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.csre-test-author strong {
  font-size: 15px;
  display: block;
  margin-bottom: 3px;
  color: #fff;
}

.csre-stars {
  display: flex;
  gap: 4px;
}

.csre-technologies {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.csre-tech-title {
  font-size: 13px;
  color: var(--blue-600);
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.csre-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
}

.csre-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.csre-tech-item img {
  height: 36px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

.csre-tech-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* CTA Banner */
.csre-cta-banner {
  background: #00205B;
  padding: 40px 20px;
  margin: 60px auto 40px;
  border-radius: 12px;
  max-width: 1200px;
}

.csre-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.csre-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csre-cta-text {
  flex: 1;
}

.csre-cta-text h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px 0;
  font-family: 'Exo 2', sans-serif;
}

.csre-cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin: 0;
}

.csre-cta-btn {
  background: #3b82f6;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s;
  white-space: nowrap;
}

.csre-cta-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .csre-hero-inner {
    flex-direction: column;
  }

  .csre-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .csre-stats-row {
    justify-content: center;
  }

  .csre-case-study-label {
    display: none;
  }

  .csre-split-row {
    grid-template-columns: 1fr;
  }

  .csre-ch-content {
    flex-direction: column;
  }

  .csre-ch-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .csre-sol-layout {
    grid-template-columns: 1fr;
  }

  .csre-bottom-row {
    grid-template-columns: 1fr;
  }

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

  .csre-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .csre-cta-banner {
    border-radius: 0;
    margin: 60px 0 0 0;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .csre-stats-row {
    flex-direction: column;
  }

  .csre-sol-grid {
    grid-template-columns: 1fr;
  }

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

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

/* ═══════════════════════════════════
   CASE STUDY ECOMMERCE WEB (csec)
═══════════════════════════════════ */

/* Hero */
.csec-hero {
  background: #010d1f;
  color: #fff;
  padding: 120px 20px 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--blue-600);
}

.csec-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.csec-hero-content {
  flex: 1;
  max-width: 560px;
}

.csec-top-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.csec-tag {
  background: var(--blue-600);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.csec-label-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.csec-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.csec-highlight {
  color: #3b82f6;
}

.csec-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 40px;
}

.csec-stats-row {
  display: flex;
  gap: 16px;
}

.csec-stat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  flex: 1;
}

.csec-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csec-stat-text strong {
  font-size: 20px;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
  color: #fff;
}

.csec-stat-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.csec-hero-visual {
  flex: 1.4;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.csec-hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

/* Section Title */
.csec-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Overview & Challenge Split */
.csec-split-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* Client Overview */
.csec-overview-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.csec-oc-top {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.csec-oc-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csec-logo-box {
  width: 100px;
  height: 80px;
  background: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.csec-logo-main {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 2px;
  line-height: 1;
  font-family: 'Exo 2', sans-serif;
}

.csec-logo-sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.csec-oc-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.csec-oc-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.csec-oc-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.csec-oc-item strong {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 600;
}

.csec-overview-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Challenge */
.csec-challenge {
  position: relative;
}

.csec-ch-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.csec-ch-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.csec-ch-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.csec-ch-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csec-ch-icon--red {
  background: #ef4444;
}

.csec-ch-item span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.45;
  font-weight: 500;
}

.csec-ch-image {
  width: 220px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.csec-ch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Solution */
.csec-sol-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.csec-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.csec-sol-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.csec-sol-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csec-sol-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.csec-sol-text p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.csec-sol-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 32, 91, 0.12);
}

.csec-sol-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Results */
.csec-results-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.csec-rs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  transition: box-shadow 0.2s;
}

.csec-rs-item:hover {
  box-shadow: 0 8px 24px rgba(0, 32, 91, 0.08);
}

.csec-rs-icon {
  color: var(--blue-500);
}

.csec-rs-text strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.csec-rs-text span {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
  text-transform: uppercase;
}

/* Bottom Row: Tech + Testimonial */
.csec-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 20px;
}

/* Technologies */
.csec-technologies {
  display: flex;
  flex-direction: column;
}

.csec-tech-title {
  font-size: 13px;
  color: var(--blue-600);
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.csec-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
}

.csec-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.csec-tech-item img {
  height: 36px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

.csec-tech-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* Testimonial */
.csec-testimonial {
  display: flex;
  flex-direction: column;
}

.csec-testimonial-card {
  background: #001b4d;
  border-radius: 12px;
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.csec-quote-mark {
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 100px;
  font-family: serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.csec-testimonial-card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.csec-test-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.csec-test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csec-test-author strong {
  font-size: 15px;
  display: block;
  margin-bottom: 3px;
  color: #fff;
}

.csec-test-author span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* CTA Banner */
.csec-cta-banner {
  background: #00205B;
  padding: 40px 20px;
  margin: 40px auto 40px;
  border-radius: 12px;
  max-width: 1200px;
}

.csec-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.csec-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csec-cta-text {
  flex: 1;
}

.csec-cta-text h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px 0;
  font-family: 'Exo 2', sans-serif;
}

.csec-cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin: 0;
}

.csec-cta-btn {
  background: #3b82f6;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s;
  white-space: nowrap;
}

.csec-cta-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* Responsive CSEC */
@media (max-width: 1024px) {
  .csec-hero-inner {
    flex-direction: column;
  }

  .csec-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .csec-top-label {
    justify-content: center;
  }

  .csec-stats-row {
    justify-content: center;
  }

  .csec-split-row {
    grid-template-columns: 1fr;
  }

  .csec-ch-content {
    flex-direction: column;
  }

  .csec-ch-image {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .csec-sol-layout {
    grid-template-columns: 1fr;
  }

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

  .csec-bottom-row {
    grid-template-columns: 1fr;
  }

  .csec-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .csec-cta-banner {
    border-radius: 0;
    margin: 40px 0 0 0;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .csec-stats-row {
    flex-direction: column;
  }

  .csec-sol-grid {
    grid-template-columns: 1fr;
  }

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

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

/* ═══════════════════════════════════
   CASE STUDY CLOUD MIGRATION (cscm)
═══════════════════════════════════ */

/* Hero */
.cscm-hero {
  background: #030a1b;
  color: #fff;
  padding: 120px 20px 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--blue-600);
}

.cscm-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.cscm-hero-content {
  flex: 1;
  max-width: 560px;
}

.cscm-top-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cscm-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cscm-highlight {
  color: #3b82f6;
}

.cscm-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 36px;
}

.cscm-hero-btn {
  display: inline-flex;
  align-items: center;
  background: var(--blue-600);
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
}

.cscm-hero-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.cscm-hero-visual {
  flex: 1.3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cscm-hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* Stats Bar */
.cscm-stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.cscm-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.cscm-stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 40px;
  flex: 1;
}

.cscm-stat-divider {
  width: 1px;
  background: var(--border);
  margin: 20px 0;
}

.cscm-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cscm-stat-info strong {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Exo 2', sans-serif;
}

.cscm-stat-info span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

/* 3-Column Layout */
.cscm-three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.cscm-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.cscm-col--mid {
  background: #f0f7ff;
  border-color: #bfdbfe;
}

.cscm-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.cscm-col-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cscm-col-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cscm-col-icon--red {
  background: #fef2f2;
  color: #ef4444;
}

.cscm-col-icon--blue {
  background: #eff6ff;
  color: var(--blue-600);
}

.cscm-col-icon--green {
  background: #f0fdf4;
  color: #16a34a;
}

.cscm-col-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cscm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cscm-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.cscm-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cscm-bullet--red {
  background: #ef4444;
}

.cscm-bullet--blue {
  background: var(--blue-600);
}

.cscm-bullet--green {
  background: #16a34a;
}

/* Bottom Row */
.cscm-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.cscm-testimonial {
  background: #001b4d;
  border-radius: 12px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cscm-quote-mark {
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 120px;
  font-family: serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.cscm-testimonial p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cscm-test-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cscm-test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cscm-test-author strong {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.cscm-test-author span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Technologies */
.cscm-technologies {
  display: flex;
  flex-direction: column;
}

.cscm-tech-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.cscm-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cscm-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cscm-tech-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.cscm-tech-logo--aws {
  background: #fff7ed;
  border-color: #fed7aa;
}

.cscm-tech-logo--aurora {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.cscm-tech-logo--s3 {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.cscm-tech-logo--ec2 {
  background: #fff7ed;
  border-color: #fed7aa;
}

.cscm-tech-logo--cloudwatch {
  background: #fef2f2;
  border-color: #fecaca;
}

.cscm-tech-logo--iam {
  background: #fef2f2;
  border-color: #fecaca;
}

.cscm-tech-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.cscm-tech-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
}

/* CTA icon wrap */
.cscm-cta-icon-wrap {
  flex-shrink: 0;
}

.cscm-cta-cloud-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .cscm-hero-inner {
    flex-direction: column;
  }

  .cscm-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .cscm-stats-inner {
    flex-direction: column;
  }

  .cscm-stat-divider {
    width: auto;
    height: 1px;
    margin: 0;
  }

  .cscm-stat-card {
    justify-content: center;
  }

  .cscm-three-col {
    grid-template-columns: 1fr;
  }

  .cscm-bottom-row {
    grid-template-columns: 1fr;
  }
}

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

/* ═══════════════════════════════════
   CASE STUDY AI AUTOMATION (csai)
═══════════════════════════════════ */

/* Hero */
.csai-hero {
  background: #030a1b;
  color: #fff;
  padding: 120px 20px 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--blue-600);
}

.csai-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.csai-hero-content {
  flex: 1;
  max-width: 560px;
}

.csai-top-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.csai-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.csai-highlight {
  color: #3b82f6;
}

.csai-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 36px;
}

.csai-hero-btn {
  display: inline-flex;
  align-items: center;
  background: var(--blue-600);
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
}

.csai-hero-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.csai-hero-visual {
  flex: 1.3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.csai-hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* Stats Bar */
.csai-stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.csai-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.csai-stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 40px;
  flex: 1;
}

.csai-stat-divider {
  width: 1px;
  background: var(--border);
  margin: 20px 0;
}

.csai-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csai-stat-info strong {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Exo 2', sans-serif;
}

.csai-stat-info span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

/* 3-Column Layout */
.csai-three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.csai-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.csai-col--mid {
  background: #f0f7ff;
  border-color: #bfdbfe;
}

.csai-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.csai-col-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.csai-col-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csai-col-icon--red {
  background: #fef2f2;
  color: #ef4444;
}

.csai-col-icon--blue {
  background: #eff6ff;
  color: var(--blue-600);
}

.csai-col-icon--green {
  background: #f0fdf4;
  color: #16a34a;
}

.csai-col-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.csai-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.csai-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.csai-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.csai-bullet--red {
  background: #ef4444;
}

.csai-bullet--blue {
  background: var(--blue-600);
}

.csai-bullet--green {
  background: #16a34a;
}

/* Bottom Row */
.csai-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.csai-testimonial {
  background: #001b4d;
  border-radius: 12px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.csai-quote-mark {
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 120px;
  font-family: serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.csai-testimonial p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.csai-test-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.csai-test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csai-test-author strong {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.csai-test-author span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Technologies */
.csai-technologies {
  display: flex;
  flex-direction: column;
}

.csai-tech-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.csai-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.csai-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.csai-tech-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.csai-tech-logo--python {
  background: #fefce8;
  border-color: #fde68a;
}

.csai-tech-logo--tf {
  background: #fff7ed;
  border-color: #fed7aa;
}

.csai-tech-logo--aws {
  background: #fff7ed;
  border-color: #fed7aa;
}

.csai-tech-logo--pg {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.csai-tech-logo--docker {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.csai-tech-logo--k8s {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.csai-tech-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.csai-tech-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* CTA icon wrap */
.csai-cta-icon-wrap {
  flex-shrink: 0;
}

.csai-cta-ai-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .csai-hero-inner {
    flex-direction: column;
  }

  .csai-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .csai-stats-inner {
    flex-direction: column;
  }

  .csai-stat-divider {
    width: auto;
    height: 1px;
    margin: 0;
  }

  .csai-stat-card {
    justify-content: center;
  }

  .csai-three-col {
    grid-template-columns: 1fr;
  }

  .csai-bottom-row {
    grid-template-columns: 1fr;
  }
}

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

/* ═══════════════════════════════════
   STANDARDIZED HERO BACKGROUND
   Matches services-web-app-development.html (wd2-hero) style:
   Dark navy gradient + blue radial glow overlay
   Applied to: services-uiux, services-it-consultancy, seo2, googleadd2,
   socialmediamanagement2, socialmediaadd2, contentwriting2,
   aiautomationv2, services-cloud-application, portfolio-case-study-ai, casestudyrealestate,
   portfolio-case-study-cloudmigration, portfolio-case-study-ecommerce,
   casestudymobile, portfolio-case-study-hospital
═══════════════════════════════════ */

/* ── Apply unified gradient background ── */
.ui2-hero,
.it2-hero,
.seo2-hero,
.gad2-hero,
.smm2-hero,
.smad2-hero,
.cw2-hero,
.ai-hero-v2,
.cloud2-hero,
.csai-hero,
.csre-hero,
.cscm-hero,
.csec-hero,
.csmob-hero,
.cshosp-hero {
  background: linear-gradient(135deg, #000d2e 0%, #001a5c 50%, #001233 100%) !important;
}

/* ── Hide background images inside hero-bg divs ── */
.ui2-hero-bg img,
.seo2-hero-bg img,
.gad2-hero-bg img,
.smad2-hero-bg img,
.cw2-hero-bg img,
.ai-hero-bg img,
.cloud2-hero-bg img {
  display: none !important;
}

/* ── Apply blue radial glow overlay — layered on top of directional gradient ── */
.ui2-hero-overlay,
.it2-hero-overlay,
.seo2-hero-overlay,
.gad2-hero-overlay,
.smm2-hero-overlay,
.smad2-hero-overlay,
.cw2-hero-overlay,
.ai-hero-overlay,
.cloud2-hero-overlay {
  background: unset;
}

/* ── Cloud App hero image visual (services-cloud-application.html) ── */
.cloud2-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cloud2-hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.cloud2-hero-visual-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cloud2-hero-visual-wrap img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .cloud2-hero-visual {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE & SPACING FIXES
   Applied to all v2 pages for consistent mobile experience
═══════════════════════════════════════════════════════════ */

/* ── Tablet (max-width: 1024px) ── */
@media (max-width: 1024px) {

  /* Hero V2 (homepage) */
  .hero-v2 {
    padding: 110px 24px 48px;
  }

  /* All service/page hero sections */
  .contact-v2-hero,
  .sv2-hero,
  .av2-hero,
  .fcv2-hero,
  .ai-hero-v2,
  .cs2-hero {
    padding: 120px 24px 60px;
  }

  /* CTA container */
  .cta-v2-container {
    margin-bottom: 0;
    padding: 28px 20px;
  }

  /* Inline-style section padding override */
  .section[style] {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* fcv2 benefits */
  .fcv2-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About story */
  .av2-story-grid {
    gap: 40px;
  }

  /* Web dev page */
  .wd2-faq-layout {
    grid-template-columns: 1fr;
  }

  /* AI Automation V2 – tablet hero */
  .ai-hero-v2 {
    padding: 130px 28px 70px;
  }

  .ai-hero-inner {
    gap: 40px;
  }

  .ai-hero-graphic-wrap {
    max-width: 420px;
  }
}

/* ── Mobile (max-width: 768px) ── */
@media (max-width: 768px) {

  /* ── Section Spacing ── */
  .section {
    padding: 40px 16px !important;
  }

  /* Override any inline-style padding on .section elements */
  .section[style] {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* ── Homepage Hero V2 ── */
  .hero-v2 {
    padding: 100px 16px 40px;
    text-align: left;
    background-position: center center;
  }

  .hero-v2-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero-v2-actions {
    justify-content: flex-start;
  }

  .hero-v2-trust {
    gap: 12px;
  }

  /* ── Impact Section ── */
  .impact-section {
    padding: 32px 16px;
  }

  .impact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .impact-image {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .impact-stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .impact-stat {
    flex: 0 0 50%;
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .impact-stat:not(:last-child)::after {
    display: none;
  }

  .is-num {
    font-size: 28px;
  }

  /* ── Services V2 Grid ── */
  .services-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* ── Industry Grid ── */
  .industry-v2-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* ── Process Grid ── */
  .process-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
    align-self: center;
  }

  .process-step {
    padding: 16px;
  }

  /* ── Testimonials ── */
  .testimonial-v2-grid {
    grid-template-columns: 1fr;
  }

  /* ── CTA V2 ── */
  .cta-v2-container {
    margin-bottom: 0;
    padding: 24px 16px;
  }

  .cta-v2-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cta-v2-content {
    min-width: 0;
    width: 100%;
  }

  .cta-v2-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-v2-actions .btn-primary,
  .cta-v2-actions .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* ── Contact V2 Hero ── */
  .contact-v2-hero {
    padding: 100px 16px 40px;
  }

  .cv2-hero-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .contact-v2-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-v2-form-card,
  .contact-v2-info-card {
    padding: 24px 16px;
  }

  .cv2-form-row {
    grid-template-columns: 1fr;
  }

  .cv2-form-footer {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .contact-v2-faq-grid {
    grid-template-columns: 1fr;
  }

  /* ── Services V2 Hero ── */
  .sv2-hero {
    padding: 100px 16px 40px;
  }

  .sv2-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sv2-hero-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .sv2-trust-inner {
    gap: 16px;
    justify-content: flex-start;
  }

  /* sv2 card on mobile */
  .sv2-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sv2-card-img-col {
    width: 100%;
    height: 180px;
  }

  /* ── About V2 Hero ── */
  .av2-hero {
    padding: 100px 16px 40px;
  }

  .av2-hero-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .av2-story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .av2-story-img {
    height: 260px;
  }

  .av2-mvv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .av2-mvv-card {
    flex-direction: column;
    padding: 20px;
  }

  .av2-stats-bar {
    padding: 24px 16px;
  }

  .av2-stats-inner {
    gap: 0;
  }

  .av2-stat-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 8px;
  }

  .av2-stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .av2-stat-item:last-child,
  .av2-stat-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .av2-team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .av2-trust-features {
    gap: 12px;
  }

  .av2-tf-item {
    flex: 0 0 100%;
    padding: 16px;
  }

  /* ── Free Consultation Hero ── */
  .fcv2-hero {
    padding: 100px 16px 40px;
    min-height: auto;
  }

  .fcv2-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fcv2-hero-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .fcv2-form-card {
    padding: 20px 16px;
  }

  .fcv2-form-row {
    grid-template-columns: 1fr;
  }

  .fcv2-benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .fcv2-benefit-card {
    padding: 20px 16px;
  }

  .fcv2-process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .fcv2-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .fcv2-testimonials-cards {
    grid-template-columns: 1fr;
  }

  /* ════════════════════════════════
     AI Automation V2 – Mobile
  ════════════════════════════════ */

  /* Hero */
  .ai-hero-v2 {
    padding: 100px 16px 48px;
    min-height: auto;
  }

  .ai-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .ai-hero-graphic {
    display: none !important;
  }

  .ai-hero-title {
    font-size: clamp(26px, 7.5vw, 36px);
  }

  .ai-hero-desc {
    font-size: 14px;
  }

  .ai-hero-trust-row {
    gap: 12px;
    margin: 12px 0;
  }

  .ai-trust-item {
    font-size: 12px;
  }

  .ai-hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .ai-hero-actions .btn-primary,
  .ai-hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Benefits Grid – 2 columns */
  .ai-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ai-benefit-card {
    min-width: unset;
    padding: 20px 16px;
  }

  /* Solutions Grid – 1 column */
  .ai-solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ai-solution-card {
    flex-direction: row;
    gap: 16px;
    padding: 20px;
    align-items: flex-start;
  }

  .ai-sc-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  /* Process Timeline – vertical stack */
  .ai-process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    max-width: 100%;
  }

  .ai-process-timeline::before {
    display: none;
  }

  .ai-pt-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0;
    width: 100%;
  }

  .ai-pt-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .ai-pt-num {
    top: 32px;
  }

  .ai-pt-step h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .ai-pt-step p {
    font-size: 12px;
  }

  /* Use Cases – 2 columns */
  .ai-usecases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px 0;
  }

  .ai-uc-col {
    min-width: unset;
  }

  /* Impact Dashboard – single column */
  .ai-impact-dashboard {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 28px;
    border-radius: 16px;
  }

  .ai-id-title {
    font-size: 22px;
  }

  .ai-id-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ai-id-stat h3 {
    font-size: 28px;
  }

  /* Tech logos – wrap */
  .cloud2-platforms-row {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .cloud2-pf-item {
    flex: 0 0 calc(25% - 12px);
    min-width: 60px;
  }

  /* ── Case Studies V2 Hero ── */
  .cs2-hero {
    padding: 100px 16px 40px;
    min-height: auto;
  }

  .cs2-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cs2-hero-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .cs2-hero-dashboard {
    display: none;
  }

  /* ── Web Development Page (wd2) ── */
  .wd2-hero {
    padding: 100px 16px 40px !important;
  }

  .wd2-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .wd2-hero-visual {
    display: none !important;
  }

  .wd2-hero-title {
    font-size: clamp(26px, 7vw, 36px) !important;
  }

  .wd2-cap-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .wd2-perf-section {
    padding: 40px 16px !important;
  }

  .wd2-perf-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .wd2-perf-visual {
    display: none !important;
  }

  .wd2-perf-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .wd2-faq-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .wd2-process-row {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .wd2-proc-step {
    padding: 16px !important;
  }

  /* ── Portfolio V2 ── */
  .cs2-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Industries V2 page ── */
  .ind2-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* ── ERP / complex service pages ── */
  .erp2-hero,
  .ui2-hero,
  .it2-hero,
  .seo2-hero,
  .gad2-hero,
  .smm2-hero,
  .smad2-hero,
  .cw2-hero,
  .ma2-hero,
  .ecom2-hero,
  .cs2-hero,
  .mob2-hero,
  .mob3-hero,
  .web2-hero,
  .ind2-hero,
  .cloud2-hero {
    padding: 100px 16px 40px !important;
    min-height: auto !important;
  }

  /* All v2 hero inner grids that are 2-column → stack */
  .erp2-hero-inner,
  .ui2-hero-inner,
  .it2-hero-inner,
  .seo2-hero-inner,
  .gad2-hero-inner,
  .smm2-hero-inner,
  .smad2-hero-inner,
  .cw2-hero-inner,
  .ma2-hero-inner,
  .ecom2-hero-inner,
  .mob2-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Hero visuals on service pages — hide on mobile for clarity */
  .erp2-hero-visual,
  .ui2-hero-visual,
  .it2-hero-visual,
  .seo2-hero-visual,
  .gad2-hero-visual,
  .smm2-hero-visual,
  .smad2-hero-visual,
  .cw2-hero-visual,
  .ma2-hero-visual,
  .ecom2-hero-visual,
  .mob2-hero-visual {
    display: none !important;
  }

  /* ── Generic 2-column grids in v2 pages ── */
  .two-col-grid,
  .split-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* ── Small Mobile (max-width: 480px) ── */
@media (max-width: 480px) {

  /* ── Section Spacing ── */
  .section,
  .section[style] {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* ── All v2 heroes ── */
  .hero-v2,
  .contact-v2-hero,
  .sv2-hero,
  .av2-hero,
  .fcv2-hero,
  .ai-hero-v2,
  .cs2-hero,
  .erp2-hero,
  .ui2-hero,
  .it2-hero,
  .seo2-hero,
  .gad2-hero,
  .smm2-hero,
  .smad2-hero,
  .cw2-hero,
  .ma2-hero,
  .ecom2-hero,
  .mob2-hero,
  .mob3-hero,
  .web2-hero,
  .ind2-hero,
  .cloud2-hero {
    padding: 90px 12px 32px !important;
    min-height: auto !important;
  }

  .wd2-hero {
    padding: 90px 12px 32px !important;
  }

  /* ── CTA ── */
  .cta-v2-container {
    padding: 20px 12px;
  }

  .cta-v2-title {
    font-size: clamp(20px, 5vw, 24px);
  }

  /* ── Services grid → 1 column ── */
  .services-v2-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* ── Industry grid → 2 columns ── */
  .industry-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* ── Impact stats → 1 column ── */
  .impact-stat {
    flex: 0 0 100%;
  }

  .impact-stat:nth-child(odd) {
    border-right: none;
  }

  /* ── About team ── */
  .av2-team-grid {
    grid-template-columns: 1fr;
  }

  /* ── Benefits ── */
  .fcv2-benefits-grid {
    grid-template-columns: 1fr;
  }

  /* ── Web dev caps ── */
  .wd2-cap-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Perf stats ── */
  .wd2-perf-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* ── AI benefits ── */
  .ai-benefit-card {
    min-width: 100%;
  }

  /* ── Button sizing ── */
  .btn-primary,
  .btn-outline {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* ── Hero V2 actions ── */
  .hero-v2-actions,
  .sv2-hero-actions,
  .av2-hero-actions,
  .cv2-hero-actions,
  .fcv2-hero-actions,
  .ai-hero-actions,
  .cs2-hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-v2-actions .btn-primary,
  .hero-v2-actions .btn-outline,
  .sv2-hero-actions .btn-primary,
  .sv2-hero-actions .btn-outline,
  .av2-hero-actions .btn-primary,
  .av2-hero-actions .btn-outline,
  .cv2-hero-actions .btn-primary,
  .cv2-hero-actions .btn-outline,
  .fcv2-hero-actions .btn-primary,
  .fcv2-hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* ── Section title size ── */
  .section-title {
    font-size: clamp(20px, 5.5vw, 28px) !important;
  }

  /* ── Trust items ── */
  .hero-v2-trust {
    gap: 8px;
  }

  .trust-item {
    font-size: 12px;
  }

  /* ── Form cards ── */
  .contact-v2-form-card,
  .contact-v2-info-card,
  .fcv2-form-card {
    padding: 16px 12px;
  }
}

/* ═══════════════════════════════════════════════════════════
   MISSING RESPONSIVE RULES (ALL V2 PAGES)
═══════════════════════════════════════════════════════════ */

/* ── Global Fixes ── */
.section-inner {
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

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

@media (max-width: 1024px) {

  /* Some 3+ col grids to 2 cols */
  .erp2-hero-list {
    grid-template-columns: 1fr;
  }

  .ui2-expertise-grid,
  .it2-pkg-grid,
  .seo2-pkg-grid,
  .gad2-pkg-grid,
  .smm2-pkg-grid,
  .smad2-pkg-grid,
  .cw2-services-grid,
  .cloud2-services-grid,
  .ma2-features-grid,
  .ecom2-features-grid,
  .news2-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {

  /* Global section title */
  .section-title[style] {
    font-size: clamp(24px, 6vw, 32px) !important;
  }

  /* ERP2 Grids */
  .erp2-benefits-row,
  .erp2-process-grid {
    grid-template-columns: 1fr !important;
  }

  /* UI2 Grids */
  .ui2-about-grid,
  .ui2-why-inner,
  .ui2-expertise-grid {
    grid-template-columns: 1fr !important;
  }

  .ui2-tools-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* IT2 Grids */
  .it2-pkg-grid,
  .it2-why-grid {
    grid-template-columns: 1fr !important;
  }

  /* SEO2 Grids */
  .seo2-pkg-grid,
  .seo2-process-grid {
    grid-template-columns: 1fr !important;
  }

  /* GAD2 Grids */
  .gad2-pkg-grid,
  .gad2-process-grid,
  .gad2-features-grid {
    grid-template-columns: 1fr !important;
  }

  /* SMM2 Grids */
  .smm2-pkg-grid,
  .smm2-process-grid {
    grid-template-columns: 1fr !important;
  }

  /* SMAD2 Grids */
  .smad2-pkg-grid,
  .smad2-process-grid {
    grid-template-columns: 1fr !important;
  }

  /* CW2 Grids */
  .cw2-services-grid,
  .cw2-process-grid {
    grid-template-columns: 1fr !important;
  }

  /* Cloud2 Grids */
  .cloud2-services-grid,
  .cloud2-why-section {
    grid-template-columns: 1fr !important;
  }

  .cloud2-platforms-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* MA2 Grids */
  .ma2-features-grid,
  .ma2-process-grid,
  .ma2-tech-grid {
    grid-template-columns: 1fr !important;
  }

  /* Ecom2 Grids */
  .ecom2-features-grid,
  .ecom2-process-grid,
  .ecom2-platforms-row {
    grid-template-columns: 1fr !important;
    flex-wrap: wrap;
  }

  /* Case Studies (CS) detail sections */
  .cs-detail-grid,
  .cs-results-grid,
  .cs-challenge-grid,
  .cs-solution-grid {
    grid-template-columns: 1fr !important;
  }

  /* Industries */
  .ind2-detail-grid {
    grid-template-columns: 1fr !important;
  }

  /* News */
  .news2-grid {
    grid-template-columns: 1fr !important;
  }

  /* Portfolio */
  .pf2-grid {
    grid-template-columns: 1fr !important;
  }

  /* MOB2 Grids */
  .mob2-features-grid,
  .mob2-process-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {

  /* Smaller screens */
  .erp2-hero-actions,
  .ui2-hero-actions,
  .it2-hero-actions,
  .seo2-hero-actions,
  .gad2-hero-actions,
  .smm2-hero-actions,
  .smad2-hero-actions,
  .cw2-hero-actions,
  .cloud2-hero-actions,
  .ma2-hero-actions,
  .ecom2-hero-actions,
  .mob2-hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .erp2-hero-actions a,
  .ui2-hero-actions a,
  .it2-hero-actions a,
  .seo2-hero-actions a,
  .gad2-hero-actions a,
  .smm2-hero-actions a,
  .smad2-hero-actions a,
  .cw2-hero-actions a,
  .cloud2-hero-actions a,
  .ma2-hero-actions a,
  .ecom2-hero-actions a,
  .mob2-hero-actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════
   404 ERROR PAGE  -  e404- prefix
═══════════════════════════════════════════════════════ */

/* -- Hero -- */
.e404-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center right;
  padding: calc(var(--nav-h) + 3px + 60px) 0 70px;
  color: #ffffff;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.e404-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 25%,
    rgba(2,13,46,0.82) 42%,
    rgba(2,13,46,0.35) 58%,
    rgba(2,13,46,0.00) 72%
  );
  z-index: 1;
}

.e404-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.e404-links-section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.e404-hero-content {
  max-width: 520px;
}

.e404-number {
  font-size: 110px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 80px rgba(96,165,250,0.55), 0 4px 30px rgba(0,0,0,0.5);
  letter-spacing: -4px;
  margin-bottom: 10px;
}

.e404-title {
  font-size: 34px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.e404-divider {
  width: 60px;
  height: 4px;
  background: #0A58CA;
  border-radius: 4px;
  margin-bottom: 22px;
}

.e404-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

.e404-btn-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #0A58CA;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.e404-btn-home:hover {
  background: #0847a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,88,202,0.45);
}

/* -- Helpful Links Section -- */
.e404-links-section {
  background: #ffffff;
  padding: 80px 0;
}

.e404-links-head {
  text-align: center;
  margin-bottom: 52px;
}

.e404-links-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 14px;
}

.e404-links-bar {
  width: 50px;
  height: 3px;
  background: #0A58CA;
  border-radius: 3px;
  margin: 0 auto 18px;
}

.e404-links-desc {
  font-size: 15.5px;
  color: #5a6b8a;
  line-height: 1.7;
}

/* -- Links Grid -- */
.e404-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.e404-link-card {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 28px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.e404-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  border-color: rgba(10,88,202,0.30);
}

.e404-link-icon {
  width: 64px;
  height: 64px;
  background: rgba(10,88,202,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A58CA;
  transition: all 0.3s ease;
}

.e404-link-card:hover .e404-link-icon {
  background: #0A58CA;
  color: #ffffff;
}

.e404-link-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
}

.e404-link-sub {
  font-size: 12.5px;
  color: #5a6b8a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.e404-link-sub span {
  color: #0A58CA;
  font-weight: 700;
  transition: transform 0.2s;
  display: inline-block;
}

.e404-link-card:hover .e404-link-sub span {
  transform: translateX(4px);
}

/* -- Support CTA -- */
.e404-support {
  background: #f0f4fa;
  padding: 0 0 60px;
}

.e404-support-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px 60px;
  background: linear-gradient(135deg, #031535 0%, #0a2a6e 55%, #0d3a8a 100%);
  border-radius: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.e404-support-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(10,88,202,0.30) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.e404-support-img {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.e404-support-img svg {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 0 20px rgba(96,165,250,0.4));
}

.e404-support-text {
  flex: 1;
  min-width: 200px;
  position: relative;
  z-index: 1;
}

.e404-support-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 10px;
}

.e404-support-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0;
}

.e404-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.e404-support-btn:hover {
  background: #ffffff;
  color: #031535;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1200px) {
  .e404-links-grid { grid-template-columns: repeat(3, 1fr); max-width: 700px; }
}

@media (max-width: 768px) {
  .e404-hero { min-height: auto; padding: calc(var(--nav-h) + 3px + 40px) 0 50px; align-items: center; }
  .e404-hero .container,
  .e404-links-section .container { padding-left: 20px; padding-right: 20px; }
  .e404-hero-overlay {
    background: linear-gradient(90deg, rgba(2,13,46,0.99) 0%, rgba(2,13,46,0.96) 60%, rgba(2,13,46,0.85) 100%);
  }
  .e404-hero-content { max-width: 100%; }
  .e404-number { font-size: 80px; letter-spacing: -2px; }
  .e404-title { font-size: 26px; }
  .e404-desc { font-size: 14.5px; max-width: 100%; }
  .e404-links-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .e404-links-title { font-size: 26px; }
  .e404-support { padding: 0 0 40px; }
  .e404-support-inner { padding: 36px 28px; flex-direction: column; align-items: flex-start; gap: 24px; border-radius: 16px; }
  .e404-support-title { font-size: 20px; }
}

@media (max-width: 480px) {
  .e404-links-grid { grid-template-columns: repeat(2, 1fr); }
  .e404-number { font-size: 64px; }
}