/* ============================================================
   CUSTOM PORTAL DEVELOPMENT — STYLESHEET
   ============================================================ */

/* --- 1. HERO SECTION --- */
.fs-hero {
  background: var(--gradient-premium-dark);
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
}

. .fs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(#bf1a1a24 1px, transparent 1px),
    linear-gradient(90deg, #bf1a1a26 2px, transparent 2px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

.fs-hero .glow-blob-hero {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(231, 24, 27, 0.12) 0%,
    transparent 70%
  );
  top: -10%;
  right: 5%;
  border-radius: 50%;
  z-index: 1;
}

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

.hero-centered-container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-content-center {
  max-width: 800px;
  color: var(--color-white);
}

.hero-content-center .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--color-white);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(231, 24, 27, 0.7);
  animation: badge-pulse-animation 2s infinite;
}

@keyframes badge-pulse-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(231, 24, 27, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(231, 24, 27, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(231, 24, 27, 0);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-white);
}

.hero-title .highlight {
  color: var(--color-primary);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary-red {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 14px 38px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-red:hover {
  background: #bd1215;
  transform: translateY(-2px);
}

.btn-secondary-white {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 38px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.float-enquire {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px 8px 0 0;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(231, 24, 27, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-enquire:hover {
  background: #bd1215;
  padding-bottom: 34px;
}

.float-enquire i {
  margin-right: 8px;
}

/* --- 2. SERVICES / CAPABILITIES GRID --- */
.services-grid-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.section-header {
  margin-bottom: 55px;
}

.section-header.text-center {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.badge-red {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(231, 24, 27, 0.08);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
}

.section-title .highlight {
  color: var(--color-primary);
}

.section-subtext {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 55px;
}

.services-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(231, 24, 27, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(231, 24, 27, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* --- 3. OVERVIEW SECTION --- */
.overview-section {
  padding: 100px 24px;
  background: var(--color-white);
}

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

.overview-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.overview-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 35px 30px;
  transition: all 0.3s ease;
}

.overview-card:hover {
  border-color: rgba(231, 24, 27, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.overview-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 12px;
}

.check-list li i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* --- 4. WHO THIS IS FOR --- */
.who-for-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.who-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.who-for-content .section-header {
  text-align: left;
  max-width: 650px;
}

.who-for-content .section-title {
  margin-top: 18px;
}

.who-for-content .section-subtext {
  margin-top: 20px;
  line-height: 1.8;
}

.who-for-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;
}

.who-for-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 991px) {
  .who-for-section {
    padding: 80px 24px;
  }

  .who-for-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .who-for-content .section-header {
    max-width: 100%;
  }

  .who-for-image {
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .who-for-section {
    padding: 60px 20px;
  }

  .who-for-grid {
    gap: 35px;
  }

  .who-for-image {
    height: 280px;
    border-radius: 14px;
  }
}
/* --- 5. PROBLEMS SECTION --- */
.problems-section {
  padding: 100px 24px;
  background: var(--color-white);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 55px auto 0;
}

.problem-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 24, 27, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.problem-num {
  font-size: 3rem;
  font-weight: 600;
  color: rgba(231, 24, 27, 0.1);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.problem-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
  padding-right: 50px;
}

.problem-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* --- 6. USE CASES SECTION --- */
.usecases-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  margin: 55px auto 0;
}

.usecase-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.usecase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(231, 24, 27, 0.12);
}

.usecase-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-primary);
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(231, 24, 27, 0.06);
  border-radius: 4px;
}

.usecase-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.usecase-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* --- 7. PARTNERSHIP SECTION --- */

.partnership-section {
  padding: 100px 24px;
  background: var(--color-white);
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 0 auto;
}

.partnership-left .section-title {
  margin-bottom: 20px;
}

.partnership-left p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
}

.partnership-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partnership-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.partnership-card:hover {
  border-color: rgba(231, 24, 27, 0.15);
  transform: translateX(5px);
}

.partnership-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(231, 24, 27, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.partnership-card:hover .partnership-icon {
  background: var(--color-primary);
  color: #ffffff;
}

.partnership-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.partnership-card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

/* --- RESPONSIVE --- */

@media (max-width: 991px) {
  .partnership-section {
    padding: 80px 24px;
  }

  .partnership-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .partnership-left .section-title {
    margin-bottom: 18px;
  }

  .partnership-right {
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .partnership-section {
    padding: 60px 20px;
  }

  .partnership-grid {
    gap: 35px;
  }

  .partnership-left p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .partnership-card {
    gap: 14px;
    padding: 22px;
    border-radius: 14px;
  }

  .partnership-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 1.05rem;
  }

  .partnership-card h4 {
    font-size: 1rem;
  }

  .partnership-card p {
    font-size: 0.88rem;
  }
}
/* --- 8. WHY CHOOSE US --- */
.why-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  margin: 55px auto 0;
}

.why-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(231, 24, 27, 0.12);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(231, 24, 27, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
}

/* --- 9. PROCESS SECTION --- */
.process-section {
  padding: 100px 24px;
  background: var(--color-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  margin: 55px auto 0;
  position: relative;
}

.process-step {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 24, 27, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.step-num {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
}

/* =========================================================
   INDUSTRY SOLUTIONS — PREMIUM DARK
   UNIQUE NAMESPACE: ims2026
   NO ANIMATION
   NO TRANSITION
   ========================================================= */

#ims2026-industry-solutions {
  padding: 100px 24px;
  background: #0a0a0a !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

#ims2026-industry-solutions .ims2026-header {
  position: relative;
  z-index: 2;
  text-align: center;
}

#ims2026-industry-solutions .ims2026-badge {
  display: inline-block;
}

#ims2026-industry-solutions .ims2026-title {
  color: #ffffff !important;
  margin-top: 10px;
}

#ims2026-industry-solutions .ims2026-title-highlight {
  color: #e7181b !important;
}

#ims2026-industry-solutions .ims2026-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100%;

  margin: 55px auto 0;
  position: relative;
  z-index: 2;
}

#ims2026-industry-solutions .ims2026-card {
  position: relative !important;
  display: block !important;
  width: 100%;
  min-height: 176px;
  box-sizing: border-box;
  padding: 35px 28px !important;
  background: #111111 !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  text-align: left !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
  overflow: hidden !important;
}

#ims2026-industry-solutions .ims2026-card::before,
#ims2026-industry-solutions .ims2026-card::after {
  content: none !important;
  display: none !important;
}

#ims2026-industry-solutions .ims2026-card:hover {
  background: #550000 !important;
  background-image: none !important;
  border-color: rgba(231, 24, 27, 0.45) !important;
  box-shadow: none !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

#ims2026-industry-solutions .ims2026-icon {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

#ims2026-industry-solutions .ims2026-icon svg {
  width: 30px !important;
  height: 30px !important;
  display: block !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  fill: none !important;
  background: transparent !important;
  background-image: none !important;
  animation: none !important;
  transition: none !important;
}

#ims2026-industry-solutions .ims2026-card:hover .ims2026-icon {
  color: #e7181b !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

#ims2026-industry-solutions .ims2026-card-title {
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  text-align: left !important;
  background: transparent !important;
  background-image: none !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

#ims2026-industry-solutions .ims2026-card-text {
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  text-align: left !important;
  background: transparent !important;
  background-image: none !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

@media (max-width: 900px) {
  #ims2026-industry-solutions {
    padding: 80px 20px;
  }
  #ims2026-industry-solutions .ims2026-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  #ims2026-industry-solutions {
    padding: 70px 16px;
  }
  #ims2026-industry-solutions .ims2026-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 40px;
  }
  #ims2026-industry-solutions .ims2026-card {
    min-height: auto;
    padding: 30px 24px !important;
  }
}

/* --- 11. TECH STACK SECTION --- */
.techstack-section {
  padding: 100px 24px;
  background: var(--color-white);
}

.techstack-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 35px 45px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  min-width: 160px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-item:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 24, 27, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.tech-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-primary);
}

.tech-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

/* --- 12. INTEGRATION SECTION V2 --- */
.integration-section-v2 {
  padding: 100px 24px;
  background: #f8fafc;
}

.integration-layout-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.integration-image-v2 {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.integration-image-v2 img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.integration-content-v2 {
  width: 100%;
}

.integration-content-v2 .section-header {
  text-align: left;
}

.integration-content-v2 .section-title {
  margin-bottom: 20px;
}

.integration-content-v2 .section-subtext {
  max-width: 800px;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .integration-layout-v2 {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .integration-content-v2 .section-header {
    text-align: center;
  }
  .integration-content-v2 .section-subtext {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .integration-section-v2 {
    padding: 70px 20px;
  }
  .integration-layout-v2 {
    gap: 35px;
  }
  .integration-image-v2,
  .integration-image-v2 img {
    border-radius: 16px;
  }
}

/* --- 13. SECURITY & QUALITY --- */
.security-section {
  padding: 100px 24px;
  background: var(--color-white);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  margin: 55px auto 0;
}

.security-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.security-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 24, 27, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.security-num {
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(231, 24, 27, 0.08);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.security-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
  padding-right: 40px;
}

.security-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
}

/* --- 14. ENGAGEMENT SECTION --- */
.engagement-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  margin: 55px auto 0;
}

.engagement-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.engagement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(231, 24, 27, 0.12);
}

.engagement-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(231, 24, 27, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.engagement-card:hover .engagement-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.engagement-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.engagement-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
}

/* ============================================================
   15. FAQ CLEAN SECTION — Minimal Design
   ============================================================ */
.faq-clean-section {
  padding: 100px 24px;
}

.faq-clean-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-clean-title {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  color: #0f172a;
  margin-bottom: 8px;
}

.faq-clean-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #475569;
  margin-bottom: 50px;
}

.faq-clean-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-clean-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-clean-item:first-child {
  border-top: 1px solid #e2e8f0;
}

.faq-clean-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  transition: color 0.3s ease;
}

.faq-clean-trigger:hover {
  color: var(--color-primary);
}

.faq-clean-trigger span:first-child {
  padding-right: 20px;
}

.faq-clean-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 1rem;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
  flex-shrink: 0;
}

.faq-clean-item.active .faq-clean-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-clean-panel {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.35s ease;
}

.faq-clean-item.active .faq-clean-panel {
  max-height: 300px;
  padding-bottom: 28px;
}

.faq-clean-panel p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  max-width: 90%;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .closing-title {
    font-size: 2.6rem;
  }
}

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

  .problems-grid,
  .usecases-grid,
  .why-grid,
  .process-timeline,
  .industries-grid,
  .security-grid,
  .engagement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .closing-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .closing-right {
    justify-content: center;
  }
  .closing-form-card {
    max-width: 100%;
  }
  .closing-features {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .fs-hero {
    padding: 100px 16px 60px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }

  .services-grid,
  .services-grid.four-col,
  .problems-grid,
  .usecases-grid,
  .why-grid,
  .process-timeline,
  .industries-grid,
  .security-grid,
  .engagement-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .techstack-grid {
    gap: 20px;
  }
  .tech-item {
    min-width: 140px;
    padding: 25px 30px;
  }

  .closing-title {
    font-size: 2rem;
  }
  .closing-features {
    flex-direction: column;
    gap: 16px;
  }
  .closing-contact-cards {
    flex-direction: column;
  }
  .closing-contact-card {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .faq-clean-title {
    font-size: 2.2rem;
  }
  .faq-clean-trigger {
    font-size: 1rem;
    padding: 22px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.5rem;
  }
  .closing-title {
    font-size: 1.7rem;
  }
  .closing-form-card {
    padding: 28px 22px;
  }

  .float-enquire {
    display: none;
  }
}
